Change a lot of stuff

This commit is contained in:
2025-09-05 20:20:58 -03:00
parent f39f45f415
commit 80c8732d93
6 changed files with 42 additions and 3 deletions

24
lua/plugins/java.lua Normal file
View File

@@ -0,0 +1,24 @@
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",
},
},
},
},
}