Files
neovim-config/lua/plugins/treesitter.lua
2024-08-02 09:13:51 +01:00

14 lines
361 B
Lua

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