summaryrefslogtreecommitdiff
path: root/config/essentials/nvim/after/plugin/treesitter.lua
blob: f7f726f0c40adbc70f7bb763d6540b2fa521268a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require'nvim-treesitter.configs'.setup {
  ensure_installed = { "c", "lua", "vim", "help", "diff"},

  sync_install = false,
  auto_install = true,

  highlight = {
    enable = true,

    additional_vim_regex_highlighting = false,

	autotag = {
		enable = true,
	}
  }
}