This repository has been archived on 2025-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nix-thinkcentre/nvim/lua/plugins/treesitter.lua
2025-10-11 22:41:24 +05:00

30 lines
566 B
Lua

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
}
}