28 lines
456 B
Lua
28 lines
456 B
Lua
return {
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
build = ":TSUpdate",
|
|
config = function()
|
|
require("nvim-treesitter.configs").setup({
|
|
highlight = { enable = true },
|
|
indent = { enable = true },
|
|
ensure_installed = {
|
|
"c",
|
|
"cpp",
|
|
"rust",
|
|
"ron",
|
|
"toml",
|
|
"javascript",
|
|
"lua",
|
|
"vim",
|
|
"regex",
|
|
"bash",
|
|
"markdown",
|
|
"markdown_inline"
|
|
},
|
|
auto_install = false
|
|
})
|
|
end
|
|
}
|
|
}
|