Skip to content

groovyls

https://github.com/prominic/groovy-language-server.git

Requirements: - Linux/macOS (for now) - Java 11+

groovyls can be installed by following the instructions here.

If you have installed groovy language server, you can set the cmd custom path as follow:

require'lspconfig'.groovyls.setup{
    -- Unix
    cmd = { "java", "-jar", "path/to/groovyls/groovy-language-server-all.jar" },
    ...
}

Setup

require'lspconfig'.groovyls.setup{}

Default values

cmd = { "java", "-jar", "groovy-language-server-all.jar" }
filetypes = { "groovy" }
root_dir = function(startpath)
    return M.search_ancestors(startpath, matcher)
  end
Back to top