Skip to content

Commit 9afba38

Browse files
committed
feat(plugin): added config.defaults.cond. Fixes #640
1 parent 10f5844 commit 9afba38

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ require("lazy").setup({
8888
| **dev** | `boolean?` | When `true`, a local plugin directory will be used instead. See `config.dev` |
8989
| **lazy** | `boolean?` | When `true`, the plugin will only be loaded when needed. Lazy-loaded plugins are automatically loaded when their Lua modules are `required`, or when one of the lazy-loading handlers triggers |
9090
| **enabled** | `boolean?` or `fun():boolean` | When `false`, or if the `function` returns false, then this plugin will not be included in the spec |
91-
| **cond** | `boolean?` or `fun():boolean` | When `false`, or if the `function` returns false, then this plugin will not be loaded. Useful to disable some plugins in vscode, or firenvim for example. |
91+
| **cond** | `boolean?` or `fun(LazyPlugin):boolean` | When `false`, or if the `function` returns false, then this plugin will not be loaded. Useful to disable some plugins in vscode, or firenvim for example. |
9292
| **dependencies** | `LazySpec[]` | A list of plugin names or plugin specs that should be loaded when the plugin loads. Dependencies are always lazy-loaded unless specified otherwise. When specifying a name, make sure the plugin spec has been defined somewhere else. |
9393
| **init** | `fun(LazyPlugin)` | `init` functions are always executed during startup |
9494
| **opts** | `table` or `fun(LazyPlugin, opts:table)` | `opts` should be a table (will be merged with parent specs), return a table (replaces parent specs) or should change a table. The table will be passed to the `Plugin.config()` function. Setting this value will imply `Plugin.config()` |
@@ -303,6 +303,9 @@ return {
303303
defaults = {
304304
lazy = false, -- should plugins be lazy-loaded?
305305
version = nil,
306+
-- default `cond` you can use to globally disable a lot of plugins
307+
-- when running inside vscode for example
308+
cond = nil, ---@type boolean|fun(self:LazyPlugin):boolean|nil
306309
-- version = "*", -- enable this to try installing the latest stable versions of plugins
307310
},
308311
-- leave nil when passing the spec as the first argument to setup()

lua/lazy/core/config.lua

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ M.defaults = {
99
defaults = {
1010
lazy = false, -- should plugins be lazy-loaded?
1111
version = nil,
12+
-- default `cond` you can use to globally disable a lot of plugins
13+
-- when running inside vscode for example
14+
cond = nil, ---@type boolean|fun(self:LazyPlugin):boolean|nil
1215
-- version = "*", -- enable this to try installing the latest stable versions of plugins
1316
},
1417
-- leave nil when passing the spec as the first argument to setup()

lua/lazy/core/loader.lua

+6-2
Original file line numberDiff line numberDiff line change
@@ -266,8 +266,12 @@ function M._load(plugin, reason, opts)
266266
return Util.error("Plugin " .. plugin.name .. " is not installed")
267267
end
268268

269-
if plugin.cond ~= nil and not (opts and opts.force) then
270-
if plugin.cond == false or (type(plugin.cond) == "function" and not plugin.cond()) then
269+
local cond = plugin.cond
270+
if cond == nil then
271+
cond = Config.options.defaults.cond
272+
end
273+
if cond ~= nil and not (opts and opts.force) then
274+
if cond == false or (type(cond) == "function" and not cond(plugin)) then
271275
plugin._.cond = false
272276
return
273277
end

0 commit comments

Comments
 (0)