Files
KeoviZ/lua/plugins/treesitter.lua
2025-08-11 23:59:08 +02:00

19 lines
283 B
Lua

return {
{
"nvim-treesitter/nvim-treesitter",
lazy = false,
build = ":TSUpdate",
config = function()
require 'nvim-treesitter.configs'.setup {
auto_install = true,
highlight = {
enable = true,
},
indent = {
enable = true,
},
}
end
}
}