You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+4-1
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,7 @@ require("lazy").setup({
88
88
|**dev**|`boolean?`| When `true`, a local plugin directory will be used instead. See `config.dev`|
89
89
|**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 |
90
90
|**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. |
92
92
|**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. |
93
93
|**init**|`fun(LazyPlugin)`|`init` functions are always executed during startup |
94
94
|**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 {
303
303
defaults= {
304
304
lazy=false, -- should plugins be lazy-loaded?
305
305
version=nil,
306
+
-- default `cond` you can use to globally disable a lot of plugins
0 commit comments