initial commit

This commit is contained in:
m
2025-08-22 18:11:40 -04:00
commit 50e30f9ba4
19 changed files with 1596 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
return {
"nvim-java/nvim-java",
config = false,
dependencies = {
{
"neovim/nvim-lspconfig",
opts = {
servers = {
jdtls = {
-- your jdtls configuration goes here
},
},
setup = {
jdtls = function()
require("java").setup({
-- your nvim-java configuration goes here
})
end,
},
},
},
},
}