Files
nvim-config/lua/plugins/treesitter.lua
2024-05-18 15:12:46 +02:00

13 lines
268 B
Lua

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