summaryrefslogtreecommitdiffstats
path: root/core/overrides/treesitter.lua
blob: a4d2dfe040d684902112a5b507079ad0511e0948 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require('nvim-treesitter.configs').setup {
  ensure_installed = { 'help',
    'c',
    'lua',
    'norg',
    'bash',
    'html',
    'make',
  },
  highlight = {
    enable = true,
    additional_vim_regex_highlighting = false,
  },
}