new neovim config

This commit is contained in:
2025-05-12 18:25:18 +02:00
parent 6cb36b4fd4
commit 2283cb6108
12 changed files with 191 additions and 128 deletions

View File

@@ -0,0 +1,15 @@
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function ()
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = { "c", "lua", "vim", "vimdoc" },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end
}