-
Hello, Srinesh!
I try to do it manually: download, unpack to /home/ilya/.local/share/nvim/mason/packages/java-debug-adapter/, but when I run nvim (LazyVim) all this is deleted. Could you please tell me where I may see detailed log and what is actually happens? I use: All others packets well done:
Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hello, I was actually about to report this issue in the coming days. For now you can work around it by passing nvim-java setup the following configuration:
|
Beta Was this translation helpful? Give feedback.
-
@logrusx I put it in /home/ilya/.config/nvim/lua/plugins/java/init.lua return {
'nvim-java/nvim-java',
config = false,
dependencies = {
{
'neovim/nvim-lspconfig',
opts = {
servers = {
jdtls = {
-- Your custom jdtls settings goes here
},
},
setup = {
jdtls = function()
require('java').setup({
-- Your custom nvim-java configuration goes here
java_debug_adapter = { version = "0.58.2" },
})
end,
},
},
},
},
}
It has been installed, but after restart there was a problem with jdtls - returns 1 |
Beta Was this translation helpful? Give feedback.
Hello, I was actually about to report this issue in the coming days.
For now you can work around it by passing nvim-java setup the following configuration:
java_debug_adapter = { version = "0.58.2" }