mirror of
https://github.com/runyanjake/dotfiles.git
synced 2025-10-04 13:57:28 -07:00
25 lines
504 B
Lua
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,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|