30 lines
827 B
Lua
30 lines
827 B
Lua
return {
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
build = ":TSUpdate",
|
|
lazy = false,
|
|
config = function()
|
|
require("nvim-treesitter.config").setup({
|
|
ensure_installed = {
|
|
"c",
|
|
"cpp",
|
|
"rust",
|
|
"bash",
|
|
"lua",
|
|
"vim",
|
|
"vimdoc",
|
|
"json",
|
|
"yaml",
|
|
"markdown",
|
|
"markdown_inline",
|
|
"javascript",
|
|
"typescript",
|
|
"glsl",
|
|
},
|
|
auto_install = true,
|
|
highlight = { enable = true },
|
|
indent = { enable = true },
|
|
})
|
|
end,
|
|
},
|
|
}
|