16 lines
251 B
Lua
16 lines
251 B
Lua
return {
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = function(_, opts)
|
|
vim.list_extend(opts.ensure_installed, {
|
|
"go",
|
|
"gomod",
|
|
"gowork",
|
|
"gosum",
|
|
"ruby",
|
|
"rust",
|
|
})
|
|
end,
|
|
},
|
|
}
|