feat(lang): add groovy

This commit is contained in:
Rubin Bhandari 2024-03-30 09:55:51 +05:45
parent 97480dc5d2
commit 8c6440b533

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 = {}
}
}
},
}