initial commit

This commit is contained in:
2026-01-19 20:33:18 -05:00
commit 6c728033f2
43 changed files with 4729 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
require('nvim-treesitter.configs').setup {
ensure_installed = {},
auto_install = false,
highlight = { enable = true },
indent = { enable = true },
}
require('nvim-treesitter.configs').setup({
highlight = {
enable = true, -- keep TS for everything else
disable = { "markdown", "markdown_inline" },
additional_vim_regex_highlighting = false,
},
indent = { enable = false },
incremental_selection = { enable = false },
})