This commit is contained in:
2025-10-11 22:41:24 +05:00
parent d0401c8c07
commit aaf079c4f4
20 changed files with 357 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
return {
{ "nvim-treesitter/nvim-treesitter",
branch = 'master',
lazy = false,
build = ":TSUpdate",
config = function()
require'nvim-treesitter.configs'.setup({
ensure_installed = {
"nix",
"yuck",
"css",
"scss",
"javascript",
"go",
"json",
"lua",
"c",
"cpp",
},
auto_install = true,
ignore_install = {},
hightlight = {
enable = true,
disable = {},
},
})
end
}
}