mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-07-27 22:14:35 +02:00
9 lines
118 B
Lua
9 lines
118 B
Lua
|
local M = {}
|
||
|
|
||
|
M.setup = function(opt)
|
||
|
opt = opt or {}
|
||
|
require("auto-jdtls.utils").attach_jdtls(opt)
|
||
|
end
|
||
|
|
||
|
return M
|