mirror of
https://github.com/kossLAN/nvim-flake.git
synced 2025-11-05 02:09:49 -05:00
java: switch to jdtls instead
This commit is contained in:
parent
e1061ee305
commit
244000e030
2 changed files with 4 additions and 4 deletions
|
|
@ -1,5 +1,5 @@
|
|||
-- Exit if the language server isn't available
|
||||
if vim.fn.executable('java-language-server') ~= 1 then
|
||||
if vim.fn.executable('jdtls') ~= 1 then
|
||||
return
|
||||
end
|
||||
|
||||
|
|
@ -9,8 +9,8 @@ local root_files = {
|
|||
}
|
||||
|
||||
vim.lsp.start {
|
||||
name = 'java_language_server',
|
||||
cmd = { 'java-language-server' },
|
||||
name = 'jdtls',
|
||||
cmd = { 'jdtls' },
|
||||
root_dir = vim.fs.dirname(vim.fs.find(root_files, { upward = true })[1]),
|
||||
capabilities = require('user.lsp').make_client_capabilities(),
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue