25 lines
563 B
Lua
25 lines
563 B
Lua
return {
|
|
"mfussenegger/nvim-jdtls",
|
|
opts = {
|
|
settings = {
|
|
java = {
|
|
configuration = {
|
|
runtimes = {
|
|
{
|
|
name = "JavaSE-21",
|
|
path = "/usr/lib/jvm/openjdk-bin-21/",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
format = {
|
|
enabled = true,
|
|
settings = { -- you can use your preferred format style
|
|
url = "https://raw.githubusercontent.com/google/styleguide/gh-pages/eclipse-java-google-style.xml",
|
|
profile = "GoogleStyle",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|