Files
2026-01-18 23:37:26 -08:00

37 lines
574 B
Lua

return {
{
"nvim-treesitter/nvim-treesitter",
config = function()
require("nvim-treesitter.configs").setup({
ensure_installed = {
"c",
"lua",
"vim",
"vimdoc",
"query",
"markdown",
"markdown_inline",
"javascript",
"typescript",
"tsx",
"rust",
"zig",
"svelte",
"html",
"templ",
"go",
"qmljs",
},
auto_install = true,
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
indent = {
enable = true,
},
})
end,
},
}