mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
9 lines
158 B
Lua
9 lines
158 B
Lua
local M = {}
|
|
|
|
M.setup = function(opt)
|
|
opt = opt or {}
|
|
require("auto-jdtls.utils").install()
|
|
require("auto-jdtls.utils").attach_jdtls(opt)
|
|
end
|
|
|
|
return M
|