Skip to content

Commit 1efa710

Browse files
committed
feat: added module=false to skip auto-loading of plugins on require
1 parent 55d194c commit 1efa710

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,9 @@ module of plugin `A`, then plugin `A` will be loaded on demand as expected.
108108

109109
You can configure **lazy.nvim** to lazy-load all plugins by default with `config.defaults.lazy = true`.
110110

111+
If you don't want this behavior for a certain plugin, you can specify that with `module=false`.
112+
You can then manually load the plugin with `:Lazy load foobar.nvim`.
113+
111114
Additionally, you can also lazy-load on **events**, **commands**,
112115
**file types** and **key mappings**.
113116

lua/lazy/core/loader.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ end
194194
function M.autoload(modname)
195195
-- check if a lazy plugin should be loaded
196196
for _, plugin in pairs(Config.plugins) do
197-
if not plugin._.loaded then
197+
if not (plugin._.loaded or plugin.module == false) then
198198
for _, pattern in ipairs({ ".lua", "/init.lua" }) do
199199
local path = plugin.dir .. "/lua/" .. modname:gsub("%.", "/") .. pattern
200200
if vim.loop.fs_stat(path) then

lua/lazy/core/plugin.lua

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ local M = {}
2626
---@field cmd? string[]
2727
---@field ft? string[]
2828
---@field keys? string[]
29+
---@field module? false
2930

3031
---@class LazyPluginRef
3132
---@field branch? string

0 commit comments

Comments
 (0)