initial commit

This commit is contained in:
Keyoonz
2025-08-11 23:59:08 +02:00
commit cb21bbc1a7
14 changed files with 383 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
return {
{
"nvim-treesitter/nvim-treesitter",
lazy = false,
build = ":TSUpdate",
config = function()
require 'nvim-treesitter.configs'.setup {
auto_install = true,
highlight = {
enable = true,
},
indent = {
enable = true,
},
}
end
}
}