dotfiles/.config/nvim/after/plugin/treesitter.lua

14 lines
287 B
Lua

require'nvim-treesitter.configs'.setup {
ensure_installed = { "c", "lua", "vim", "help", "python", "fish", "html", "bash" },
sync_install = false,
auto_install = true,
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
indent = {
enable = true,
}
}