swconfig/lazyvim/lua/plugins/nvim-treesitter.lua

9 lines
222 B
Lua
Raw Permalink Normal View History

2024-03-08 12:02:51 +08:00
return {
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
if type(opts.ensure_installed) == "table" then
vim.list_extend(opts.ensure_installed, { "c", "cpp" })
end
end,
}