dotfiles/.config/nvim/lua/plugins/treesitter.lua
2024-02-25 09:44:35 +01:00

14 lines
332 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function(_, opts)
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = { "lua", "go" },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end
}