mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-04 01:55:08 +02:00
feat(java): Replace the current custom installation of java, with lspinstall (#517)
This commit is contained in:
parent
19003f7577
commit
a9e9047118
5 changed files with 40 additions and 27 deletions
|
@ -5,15 +5,15 @@ require'lspconfig/configs'.jdtls = nil -- important, unset the loaded config aga
|
|||
-- config.default_config.cmd[1] = "./node_modules/.bin/bash-language-server"
|
||||
|
||||
-- 2. extend the config with an install_script and (optionally) uninstall_script
|
||||
require'lspinstall/servers'.jdtls = vim.tbl_extend('error', config, {
|
||||
-- lspinstall will automatically create/delete the install directory for every server
|
||||
install_script = [[
|
||||
git clone https://github.com/eclipse/eclipse.jdt.ls.git
|
||||
cd eclipse.jdt.ls
|
||||
./mvnw clean verify
|
||||
]],
|
||||
uninstall_script = nil -- can be omitted
|
||||
})
|
||||
-- require'lspinstall/servers'.jdtls = vim.tbl_extend('error', config, {
|
||||
-- -- lspinstall will automatically create/delete the install directory for every server
|
||||
-- install_script = [[
|
||||
-- git clone https://github.com/eclipse/eclipse.jdt.ls.git
|
||||
-- cd eclipse.jdt.ls
|
||||
-- ./mvnw clean verify
|
||||
-- ]],
|
||||
-- uninstall_script = nil -- can be omitted
|
||||
-- })
|
||||
|
||||
require'lspinstall/servers'.kotlin = vim.tbl_extend('error', config, {
|
||||
install_script = [[
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue