Skip to content

Commit 74d8b8e

Browse files
committed
fix: plugin list can be string[]. Fixes #145
1 parent 86f2c67 commit 74d8b8e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lua/lazy/manage/init.lua

+5-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ local M = {}
99
---@field clear? boolean
1010
---@field show? boolean
1111
---@field mode? string
12-
---@field plugins? LazyPlugin[]
12+
---@field plugins? (LazyPlugin|string)[]
1313
---@field concurrency? number
1414

1515
---@param ropts RunnerOpts
@@ -18,6 +18,10 @@ function M.run(ropts, opts)
1818
opts = opts or {}
1919

2020
if opts.plugins then
21+
---@param plugin string|LazyPlugin
22+
opts.plugins = vim.tbl_map(function(plugin)
23+
return type(plugin) == "string" and Config.plugins[plugin] or plugin
24+
end, vim.tbl_values(opts.plugins))
2125
ropts.plugins = opts.plugins
2226
end
2327

0 commit comments

Comments
 (0)