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