Files
2026-04-28 11:49:00 +03:00

38 lines
776 B
Lua

return {
-- Better highlighting and parsing
{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
require("nvim-treesitter.config").setup({
highlight = { enable = true },
additional_vim_regex_highlighting = false,
indent = { enable = true },
ensure_installed = {
"go",
"gomod",
"gowork",
"typescript",
"tsx",
"javascript",
"json",
"lua",
"vimdoc",
"markdown",
"yaml",
"bash",
"c_sharp",
"java",
"c",
"cpp",
"julia",
"python",
"zig",
"asm",
"html-lsp",
},
})
end,
},
}