removed nvim as submodule

This commit is contained in:
snarmph 2025-09-29 10:32:22 +02:00
parent 802e03c77e
commit 3a6b72a050
16 changed files with 727 additions and 1 deletions

View file

@ -0,0 +1,14 @@
return {
'nvim-treesitter/nvim-treesitter',
lazy = false,
branch = 'main',
build = ':TSUpdate',
opts = {
ensure_installed = { "lua", "vim", "json" },
highlight = { enable = true },
indent = { enable = true },
config = function(_, opts)
require("nvim-treesitter.configs").setup(opts)
end,
},
}