Update neovim configs

This commit is contained in:
2025-08-05 16:19:18 -04:00
parent f404788868
commit 46ec7c60ee
9 changed files with 77 additions and 47 deletions

View File

@@ -0,0 +1,12 @@
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
local config = require("nvim-treesitter.configs")
config.setup({
ensure_installed = {"lua", "javascript", "c", "zig", "vim", "rasi", "cpp", "markdown", "markdown_inline"},
highlight = { enable = true },
indent = { enable = true },
})
end
}