aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugin/treesitter.lua
blob: e14a9755df15b0936c760222e42edeccd2698712 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require("nvim-treesitter.configs").setup {
  ensure_installed = { "c", "rust", "lua", "vimdoc" },
  sync_install = false,
  highlight = {
    enable = true,
    additional_vim_regex_highlighting = true,
  },
  indent = { enable = false },
  rainbow = {
    enable = true,
  }
}