12 lines
330 B
Lua
12 lines
330 B
Lua
require'nvim-treesitter.configs'.setup {
|
|
ensure_installed = { "help", "javascript", "typescript", "python", "c", "lua", "rust" },
|
|
sync_install = false,
|
|
auto_install = true,
|
|
highlight = {
|
|
enable = true,
|
|
additional_vim_regex_highlighting = false,
|
|
},
|
|
indent = {
|
|
enable = true
|
|
},
|
|
}
|