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