patched autocommand issue, simplifying lsp setup

This commit is contained in:
venus
2026-06-01 22:36:15 -05:00
parent b427c4f09f
commit e7c8b3f9cd
4 changed files with 44 additions and 60 deletions

View File

@@ -0,0 +1,34 @@
return { -- basic tree sitter parser support
"nvim-treesitter/nvim-treesitter",
opts = {
indent = { enable = true },
highlight = { enable = true },
folds = { enable = true },
ensure_installed = {
"bash",
"c",
"diff",
"html",
"javascript",
"jsdoc",
"json",
"lua",
"luadoc",
"luap",
"markdown",
"markdown_inline",
"printf",
"python",
"query",
"regex",
"toml",
"tsx",
"typescript",
"vim",
"vimdoc",
"xml",
"yaml",
"zsh",
},
}
}