nvim config

This commit is contained in:
sebastian
2025-04-10 14:36:56 +02:00
parent e2f101f3ce
commit ac74fb8b70
18 changed files with 346 additions and 0 deletions

View File

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