Small changes from here and there

This commit is contained in:
2025-11-07 14:45:36 -06:00
parent f98658f02b
commit bb453be9e8
6 changed files with 13 additions and 8 deletions

View File

@@ -14,12 +14,14 @@ return {
},
sync_install = false, -- install `ensure_installed` parsers synchronously
auto_install = true, -- install missing on BufEnter, requires tree-sitter CLI
ignore_install = {},
ignore_install = {
"csv",
},
-- indent = { enable = true }, -- TODO: do i want this?
highlight = {
enable = true, -- `false` will disable the whole extension
disable = function(lang, buf)
for i, v in ipairs({ "html", }) do
for i, v in ipairs({ "html", "csv", }) do
if lang == v then
print("treesitter disabled for this language")
return true