Files
nvim-config/lua/funsi/plugins/nvim-treesitter.lua
T
2026-03-10 18:39:47 +01:00

15 lines
470 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = { "lua", 'gdscript', 'godot_resource', 'gdshader', "vim", "javascript", "html", "rust", "typescript", "glsl", "wgsl" },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end
}