62 lines
1.7 KiB
Lua
62 lines
1.7 KiB
Lua
-------------------------------------------------------------------------------
|
|
-- - JDTLS server configuration -
|
|
-------------------------------------------------------------------------------
|
|
|
|
local common_config = require("lsp.server_config")
|
|
local M = {}
|
|
|
|
function M.setup()
|
|
require("jdtls").setup_dap()
|
|
require("jdtls.setup").add_commands()
|
|
local on_attach = function(client, bufnr)
|
|
vim.bo.omnifunc = "v:lua.vim.lsp.omnifunc"
|
|
|
|
common_config.on_attach(client, bufnr)
|
|
|
|
local code_action_fun = function()
|
|
require("jdtls").code_action()
|
|
end
|
|
vim.keymap.set("n", "<A-CR>", code_action_fun)
|
|
vim.keymap.set("n", "<Leader>ac", code_action_fun)
|
|
end
|
|
|
|
local root_markers = { "gradlew", "pom.xml" }
|
|
local root_dir = require("jdtls.setup").find_root(root_markers)
|
|
local home = os.getenv("HOME")
|
|
|
|
local workspace_folder = home .. "/.workspace" .. vim.fn.fnamemodify(root_dir, ":p:h:t")
|
|
local config = {
|
|
flags = {
|
|
allow_incremental_sync = true,
|
|
},
|
|
on_attach = on_attach,
|
|
}
|
|
config.settings = {
|
|
java = {
|
|
signatureHelp = { enabled = true },
|
|
sources = {
|
|
organizeImports = {
|
|
starThreshold = 9999,
|
|
staticStarThreshold = 9999,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
config.cmd = { "jdtls-start.sh", workspace_folder }
|
|
config.on_init = function(client, _)
|
|
client.notify("workspace/didChangeConfiguration", { settings = config.settings })
|
|
end
|
|
|
|
local extendedClientCapabilities = require("jdtls").extendedClientCapabilities
|
|
extendedClientCapabilities.resolveAdditionalTextEditsSupport = true
|
|
config.init_options = {
|
|
-- bundles = bundles;
|
|
extendedClientCapabilities = extendedClientCapabilities,
|
|
}
|
|
|
|
-- Server
|
|
require("jdtls").start_or_attach(config)
|
|
end
|
|
|
|
return M
|