This commit is contained in:
Rubin Bhandari 2024-03-30 04:42:30 +00:00 committed by GitHub
commit edba11744c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,18 @@
return {
{
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
if type(opts.ensure_installed) == "table" then
vim.list_extend(opts.ensure_installed, { "groovy" })
end
end,
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
groovyls = {}
}
}
},
}