diff --git a/lua/lazyvim/plugins/extras/lang/groovy.lua b/lua/lazyvim/plugins/extras/lang/groovy.lua new file mode 100644 index 00000000..478ce6cc --- /dev/null +++ b/lua/lazyvim/plugins/extras/lang/groovy.lua @@ -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 = {} + } + } + }, +}