Skip to content

Commit c1912e2

Browse files
committed
feat(pkg): import package specs in the scope of the plugin
1 parent 75ffe56 commit c1912e2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lua/lazy/pkg/init.lua

+5-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,11 @@ end
8686
function M.get_spec(plugin)
8787
local pkg = M.get(plugin)
8888
local spec = pkg and pkg.spec
89-
return spec and type(spec) == "table" and vim.deepcopy(spec) or spec
89+
if not spec then
90+
return
91+
end
92+
spec = type(spec) == "table" and vim.deepcopy(spec) or spec
93+
return { plugin.name, specs = spec }
9094
end
9195

9296
return M

0 commit comments

Comments
 (0)