Skip to content

Commit 2a7b004

Browse files
committed
feat(spec): config can be true or a table that will be passed to require("plugin").setup(config)
1 parent 9e98389 commit 2a7b004

File tree

4 files changed

+69
-2
lines changed

4 files changed

+69
-2
lines changed

README.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ require("lazy").setup({
9090
| **enabled** | `boolean?` or `fun():boolean` | When `false`, or if the `function` returns false, then this plugin will not be used |
9191
| **dependencies** | `LazySpec[]` | A list of plugin specs that should be loaded when the plugin loads. Dependencies are always lazy-loaded unless specified otherwise |
9292
| **init** | `fun(LazyPlugin)` | `init` functions are always executed during startup |
93-
| **config** | `fun(LazyPlugin)` | `config` is executed when the plugin loads |
93+
| **config** | `fun(LazyPlugin)` or `true` or `table` | `config` is executed when the plugin loads. You can also set to `true` or pass a `table`, that will be passed to `require("plugin").setup(opts)` |
9494
| **build** | `fun(LazyPlugin)` | `build` is executed when a plugin is installed or updated |
9595
| **branch** | `string?` | Branch of the repository |
9696
| **tag** | `string?` | Tag of the repository |
@@ -202,6 +202,20 @@ return {
202202
end,
203203
},
204204

205+
-- the above could also be written as
206+
{
207+
"nvim-neorg/neorg",
208+
ft = "norg",
209+
config = true, -- run require("norg").setup()
210+
},
211+
212+
-- or set custom config
213+
{
214+
"nvim-neorg/neorg",
215+
ft = "norg",
216+
config = { foo = "bar" }, -- run require("norg").setup({foo = "bar"})
217+
},
218+
205219
{
206220
"dstein64/vim-startuptime",
207221
-- lazy-load on a command

lua/lazy/core/loader.lua

+35-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ function M.load(plugins, reason)
142142

143143
M.packadd(plugin.dir)
144144
if plugin.config then
145-
Util.try(plugin.config, "Failed to run `config` for " .. plugin.name)
145+
M.config(plugin)
146146
end
147147

148148
plugin._.loaded.time = Util.track().time
@@ -154,6 +154,40 @@ function M.load(plugins, reason)
154154
end
155155
end
156156

157+
--- runs plugin config
158+
---@param plugin LazyPlugin
159+
function M.config(plugin)
160+
local fn
161+
if type(plugin.config) == "function" then
162+
fn = plugin.config
163+
else
164+
local normname = Util.normname(plugin.name)
165+
---@type table<string, string>
166+
local mods = {}
167+
Util.ls(plugin.dir .. "/lua", function(_, modname)
168+
modname = modname:gsub("%.lua$", "")
169+
mods[modname] = modname
170+
local modnorm = Util.normname(modname)
171+
-- if we found an exact match, then use that
172+
if modnorm == normname then
173+
mods = { modname }
174+
return false
175+
end
176+
end)
177+
mods = vim.tbl_values(mods)
178+
if #mods == 1 then
179+
fn = function()
180+
require(mods[1]).setup(plugin.config == true and {} or plugin.config)
181+
end
182+
else
183+
return Util.error(
184+
"Lua module not found for config of " .. plugin.name .. ". Please use a `config()` function instead"
185+
)
186+
end
187+
end
188+
Util.try(fn, "Failed to run `config` for " .. plugin.name)
189+
end
190+
157191
---@param path string
158192
function M.packadd(path)
159193
M.source_runtime(path, "plugin")

lua/lazy/core/util.lua

+5
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ function M.track(data, time)
2727
end
2828
end
2929

30+
---@param name string
31+
function M.normname(name)
32+
return name:lower():gsub("^n?vim%-", ""):gsub("%.n?vim$", ""):gsub("%.lua", ""):gsub("[^a-z]+", "")
33+
end
34+
3035
function M.norm(path)
3136
if path:sub(1, 1) == "~" then
3237
local home = vim.loop.os_homedir()

lua/lazy/example.lua

+14
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,20 @@ return {
1616
end,
1717
},
1818

19+
-- the above could also be written as
20+
{
21+
"nvim-neorg/neorg",
22+
ft = "norg",
23+
config = true, -- run require("norg").setup()
24+
},
25+
26+
-- or set custom config
27+
{
28+
"nvim-neorg/neorg",
29+
ft = "norg",
30+
config = { foo = "bar" }, -- run require("norg").setup({foo = "bar"})
31+
},
32+
1933
{
2034
"dstein64/vim-startuptime",
2135
-- lazy-load on a command

0 commit comments

Comments
 (0)