18 lines
375 B
Lua
18 lines
375 B
Lua
|
|
return {
|
||
|
|
"nvim-treesitter/nvim-treesitter",
|
||
|
|
build = ":TSUpdate",
|
||
|
|
config = function()
|
||
|
|
local config = require("nvim-treesitter.configs")
|
||
|
|
config.setup({
|
||
|
|
ensure_installed = { "c", "lua", "vim", "vimdoc", "query" },
|
||
|
|
auto_install = true,
|
||
|
|
highlight = {
|
||
|
|
enable = true,
|
||
|
|
},
|
||
|
|
indent = {
|
||
|
|
enable = true,
|
||
|
|
},
|
||
|
|
})
|
||
|
|
end,
|
||
|
|
}
|