Skip to content

Commit 44f80a7

Browse files
committed
feat(plugin): allow plugin files only without a main plugin module. Fixes #53
1 parent f5734f5 commit 44f80a7

File tree

4 files changed

+23
-16
lines changed

4 files changed

+23
-16
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ Example:
493493
require("lazy").setup("plugins")
494494
```
495495

496-
- `~/.config/nvim/lua/plugins.lua` or `~/.config/nvim/lua/plugins/init.lua`
496+
- `~/.config/nvim/lua/plugins.lua` or `~/.config/nvim/lua/plugins/init.lua` **_(this file is optional)_**
497497

498498
```lua
499499
return {

lua/lazy/core/plugin.lua

+2-6
Original file line numberDiff line numberDiff line change
@@ -220,19 +220,15 @@ function M.spec()
220220

221221
if type(Config.spec) == "string" then
222222
-- spec is a module
223-
local function _load(name)
224-
local modname = name and (Config.spec .. "." .. name) or Config.spec
223+
local function _load(modname)
225224
-- unload the module so we get a clean slate
226225
---@diagnostic disable-next-line: no-unknown
227226
package.loaded[modname] = nil
228227
Util.try(function()
229228
spec:normalize(Cache.require(modname))
230229
end, "Failed to load **" .. modname .. "**")
231230
end
232-
local path_plugins = vim.fn.stdpath("config") .. "/lua/" .. Config.spec:gsub("%.", "/")
233-
234-
_load()
235-
Util.lsmod(path_plugins, _load)
231+
Util.lsmod(Config.spec --[[@as string]], _load)
236232
else
237233
-- spec is a spec
238234
spec:normalize(vim.deepcopy(Config.spec))

lua/lazy/core/util.lua

+18-4
Original file line numberDiff line numberDiff line change
@@ -158,14 +158,28 @@ function M.walk(path, fn)
158158
end)
159159
end
160160

161+
---@param modname string
161162
---@param root string
162163
---@param fn fun(modname:string, modpath:string)
163-
function M.lsmod(root, fn)
164+
---@overload fun(modname:string, fn: fun(modname:string, modpath:string))
165+
function M.lsmod(modname, root, fn)
166+
if type(root) == "function" then
167+
fn = root
168+
root = vim.fn.stdpath("config") .. "/lua"
169+
end
170+
root = root .. "/" .. modname:gsub("%.", "/")
171+
if vim.loop.fs_stat(root .. ".lua") then
172+
fn(modname, root .. ".lua")
173+
end
164174
M.ls(root, function(path, name, type)
165-
if type == "file" and name:sub(-4) == ".lua" and name ~= "init.lua" then
166-
fn(name:sub(1, -5), path)
175+
if type == "file" and name:sub(-4) == ".lua" then
176+
if name == "init.lua" then
177+
fn(modname, path)
178+
else
179+
fn(modname .. "." .. name:sub(1, -5), path)
180+
end
167181
elseif type == "directory" and vim.loop.fs_stat(path .. "/init.lua") then
168-
fn(name, path .. "/init.lua")
182+
fn(modname .. "." .. name, path .. "/init.lua")
169183
end
170184
end)
171185
end

lua/lazy/manage/reloader.lua

+2-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ M.files = {}
1010

1111
---@type vim.loop.Timer
1212
M.timer = nil
13-
M.main = nil
1413
M.root = nil
1514

1615
function M.enable()
@@ -19,8 +18,7 @@ function M.enable()
1918
end
2019
if type(Config.spec) == "string" then
2120
M.timer = vim.loop.new_timer()
22-
M.root = vim.fn.stdpath("config") .. "/lua/" .. Config.spec:gsub("%.", "/")
23-
M.main = vim.loop.fs_stat(M.root .. ".lua") and (M.root .. ".lua") or (M.root .. "/init.lua")
21+
M.root = vim.fn.stdpath("config") .. "/lua/"
2422
M.check(true)
2523
M.timer:start(2000, 2000, M.check)
2624
end
@@ -56,8 +54,7 @@ function M.check(start)
5654
end
5755
end
5856

59-
check(nil, M.main)
60-
Util.lsmod(M.root, check)
57+
Util.lsmod(Config.spec --[[@as string]], M.root, check)
6158

6259
for file in pairs(M.files) do
6360
if not checked[file] then

0 commit comments

Comments
 (0)