23 lines
441 B
Lua
23 lines
441 B
Lua
|
local configs = require("nvim-treesitter.configs")
|
||
|
configs.setup({
|
||
|
ensure_installed = "all",
|
||
|
sync_install = false,
|
||
|
ignore_install = { "" },
|
||
|
highlight = {
|
||
|
enable = true,
|
||
|
disable = { "" },
|
||
|
additional_vim_regex_highlighting = true,
|
||
|
},
|
||
|
rainbow = {
|
||
|
enable = true,
|
||
|
},
|
||
|
autopairs = {
|
||
|
enable = true,
|
||
|
},
|
||
|
context_commentstring = {
|
||
|
enable = true,
|
||
|
enable_autocmd = false,
|
||
|
},
|
||
|
indent = { enable = true, disable = { "yaml" } },
|
||
|
})
|