summaryrefslogtreecommitdiff
path: root/.config/nvim/plugins/treesitter.vim
blob: 6f12bd04380759b13666cc5f067f1b569e4f3b4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
lua <<EOF
require('nvim-treesitter.configs').setup {
  ensure_installed = 'all',
  sync_install = false,
  indent = {
    enable = true,
  },
  highlight = {
    enable = true,
    additional_vim_regex_highlighting = false,
  },
}
EOF