Modernizied instatiation thingy

This commit is contained in:
CRy386i 2026-05-02 17:17:04 +02:00
parent 6f55a66333
commit daa989d24a
4 changed files with 11 additions and 11 deletions

View file

@ -1,9 +1,9 @@
return { "nvim-treesitter/nvim-treesitter",
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
require("nvim-treesitter.configs").setup {
ensure_installed = { 'c', 'cpp', 'lua' },
highlight = { enable = true, }
}
end
main = 'nvim-treesitter.configs',
opts = {
ensure_installed = { 'c', 'cpp', 'lua' },
highlight = { enable = true, }
}
}