22 lines
286 B
Lua
22 lines
286 B
Lua
|
require('nvim-treesitter.configs').setup({
|
||
|
highlight = {
|
||
|
enable = true,
|
||
|
additional_vim_regex_highlighting = false,
|
||
|
},
|
||
|
indent = {
|
||
|
enable = true,
|
||
|
},
|
||
|
ensure_installed = {
|
||
|
"bash",
|
||
|
"c",
|
||
|
"cpp",
|
||
|
"json",
|
||
|
"lua",
|
||
|
"markdown",
|
||
|
"python",
|
||
|
"rust",
|
||
|
"vim",
|
||
|
"yaml",
|
||
|
},
|
||
|
})
|