25 lines
329 B
Lua
25 lines
329 B
Lua
return {
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = {
|
|
ensure_installed = {
|
|
"c",
|
|
"markdown",
|
|
"dart",
|
|
"rust",
|
|
"go",
|
|
"lua",
|
|
"vim",
|
|
},
|
|
auto_install = true,
|
|
},
|
|
config = function()
|
|
require("nvim-treesitter.configs").setup({
|
|
indent = {
|
|
enable = true,
|
|
},
|
|
})
|
|
end,
|
|
},
|
|
}
|