Files
nvim-config/lua/plugins/treesitter.lua
2026-03-19 13:09:21 -04:00

18 lines
438 B
Lua

return {
'nvim-treesitter/nvim-treesitter',
lazy = false,
branch = 'master',
build = ':TSUpdate',
config = function()
local configs = require("nvim-treesitter.configs")
configs.setup({
highlight = { enable = true },
indent = { enable = true },
autotag = { enable = true },
ensure_installed = {
"lua", "c", "rust", "python", "java"
},
})
end,
}