Files
L-nvim-conf/lua/plugins/treesitter.lua
2025-11-15 21:31:11 +00:00

16 lines
412 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", "glsl", "typescript", "javascript", "html", "json", "json5"},
highlight ={enable=true},
indent ={ disable=true },
})
end
}