Initial Push.

This commit is contained in:
2025-08-15 17:44:24 -04:00
commit c9ff287462
62 changed files with 6649 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
local configs = require('nvim-treesitter.configs')
configs.setup({
ensure_installed = {
"ini", "bash", "c", "lua", "vim", "vimdoc", "query", "python",
"rust", "zig", "typescript", "svelte", "css", "html", "nix"
},
sync_install = false,
highlight = { enable = true },
indent = { enable = true, disable = { "norg" }, },
incremental_selection = { enable = true },
})