9 lines
222 B
Lua
9 lines
222 B
Lua
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,
|
|
}
|