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
+5-2
Original file line number
Diff line number
Diff line change
@@ -107,7 +107,7 @@ require("lazy").setup({
107
107
|**keys**|`string?` or `string[]` or `LazyKeys[]` or `fun(self:LazyPlugin, keys:string[]):(string \| LazyKeys)[]`| Lazy-load on key mapping |
108
108
|**module**|`false?`| Do not automatically load this Lua module when it's required somewhere |
109
109
|**priority**|`number?`| Only useful for **start** plugins (`lazy=false`) to force loading certain plugins first. Default priority is `50`. It's recommended to set this to a high number for colorschemes. |
110
-
|**optional**|`boolean?`| When a spec is tagged optional, it will only be included in the final spec, when the same plugin has been specified at least once somewhere else without `optional`. This is mainly useful for Neovim distros, to allow setting options on plugins that may/may not be part of the user's plugins |
110
+
|**optional**|`boolean?`| When a spec is tagged optional, it will only be included in the final spec, when the same plugin has been specified at least once somewhere else without `optional`. This is mainly useful for Neovim distros, to allow setting options on plugins that may/may not be part of the user's plugins|
111
111
112
112
### Lazy Loading
113
113
@@ -310,7 +310,7 @@ return {
310
310
git= {
311
311
-- defaults for the `Lazy log` command
312
312
-- log = { "-10" }, -- show the last 10 commits
313
-
log= { "--since=3 days ago" }, -- show commits from the last 3 days
313
+
log= { "-8" }, -- show commits from the last 3 days
314
314
timeout=120, -- kill processes that take more than 2 minutes
0 commit comments