switched to a submodule

This commit is contained in:
kalmenn 2023-12-18 09:11:00 +01:00
commit fdf977246d
Signed by: kalmenn
GPG key ID: DFF253360BF8471F
14 changed files with 276 additions and 0 deletions

View file

@ -0,0 +1,16 @@
return {
"nvim-treesitter/nvim-treesitter",
config = function()
require('nvim-treesitter.configs').setup({
modules = {},
ensure_installed = { "lua", "rust" },
sync_install = false,
auto_install = true,
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
ignore_install = {},
})
end
}