Nvim treesitter

This commit is contained in:
Luka Jankovic 2025-01-21 21:31:36 +01:00
parent cfd03ec11f
commit b3fab9a8af
3 changed files with 33 additions and 20 deletions

View file

@ -0,0 +1,13 @@
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
}