config-neovim/lua/plugins/20-treesitter.lua

23 lines
637 B
Lua
Raw Normal View History

return {
"nvim-treesitter/nvim-treesitter",
enabled = false,
name = "nvim-treesitter",
event = "VeryLazy",
build = ":TSUpdate",
opts = {
indent = { enable = true },
highlight = { enable = true },
2024-08-05 14:01:51 +00:00
ensure_installed = {},
auto_install = true,
sync_install = false,
},
2024-08-05 14:01:51 +00:00
--config = function (this, opts)
-- require(this.name .. ".configs").setup(opts);
-- if custom.proxy_url ~= "" then
-- require(this.name .. ".install").command_extra_args = {
-- curl = { "--proxy", custom.proxy_url }
-- }
-- end
--end,
}