2025-03-14 18:57:28 -07:00

25 lines
504 B
Lua

-- https://github.com/nvim-java/nvim-java/wiki/Lazyvim
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
})
end,
},
},
},
},
}