nvim-config/lua/plugins/treesitter.lua
2025-02-27 11:49:14 -05:00

15 lines
336 B
Lua

return {
{
"nvim-treesitter/nvim-treesitter",
version = false, -- From LazyVim
build = ":TSUpdate",
opts = {
highlight = { enable = true },
indent = { enable = true },
ensure_installed = "all",
},
config = function(_, opts)
require("nvim-treesitter.configs").setup(opts)
end,
}
}