dots2/.config/nvim/lua/plugins/nvim-treesitter.lua
2025-01-21 21:31:36 +01:00

13 lines
321 B
Lua

return {
'nvim-treesitter/nvim-treesitter',
config = function()
require("nvim-treesitter.configs").setup({
ensure_installed = "all",
auto_install = true,
sync_install = false,
highlight = {
enable = true,
},
})
end
}