1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 07:40:05 +08:00
SpaceVim/bundle/nvim-lspconfig-latest/lua/lspconfig/server_configurations/java_language_server.lua

19 lines
424 B
Lua

local util = require 'lspconfig.util'
return {
default_config = {
filetypes = { 'java' },
root_dir = util.root_pattern('build.gradle', 'pom.xml', '.git'),
settings = {},
},
docs = {
description = [[
https://github.com/georgewfraser/java-language-server
Java language server
Point `cmd` to `lang_server_linux.sh` or the equivalent script for macOS/Windows provided by java-language-server
]],
},
}