Files
L-nvim-conf/lua/plugins/treesitter.lua
2025-10-09 00:02:38 +02:00

16 lines
396 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
branch = 'master',
lazy = false,
build = ":TSUpdate",
config= function()
--TREESITTER
local config = require("nvim-treesitter.configs")
config.setup({
ensure_installed ={"lua", "c", "python", "cpp", "typescript", "javascript", "html", "json5"},
highlight ={enable=true},
indent ={ disable=true },
})
end
}