|
1 |
| -*lazy.nvim.txt* For Neovim >= 0.8.0 Last change: 2022 December 18 |
| 1 | +*lazy.nvim.txt* For Neovim >= 0.8.0 Last change: 2022 December 19 |
2 | 2 |
|
3 | 3 | ==============================================================================
|
4 | 4 | Table of Contents *lazy.nvim-table-of-contents*
|
@@ -107,7 +107,7 @@ PLUGIN SPEC *lazy.nvim-plugin-spec*
|
107 | 107 | │[1] │string? │Short plugin url. Will be expanded using config.git.url_format │
|
108 | 108 | │**dir** │string? │A directory pointing to a local plugin │
|
109 | 109 | │**url** │string? │A custom git url where the plugin is hosted │
|
110 |
| -│**name** │string? │A custom name for the plugin used for the local plugin directory and as the dispay name │ |
| 110 | +│**name** │string? │A custom name for the plugin used for the local plugin directory and as the display name │ |
111 | 111 | │**dev** │boolean? │When true, a local plugin directory will be used instead. See config.dev │
|
112 | 112 | │**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 laz-loading handlers triggers │
|
113 | 113 | │**enabled** │boolean? or fun():boolean │When false, or if the function returns false, then this plugin will not be used │
|
@@ -246,7 +246,7 @@ Other examples:
|
246 | 246 | keys = { "<C-a>", "<C-x>" },
|
247 | 247 | },
|
248 | 248 |
|
249 |
| - -- local plugins need to be explicitely configured with dir |
| 249 | + -- local plugins need to be explicitly configured with dir |
250 | 250 | { dir = "~/projects/secret.nvim" },
|
251 | 251 |
|
252 | 252 | -- you can use a custom url to fetch a plugin
|
@@ -312,7 +312,7 @@ CONFIGURATION *lazy.nvim-configuration*
|
312 | 312 | throttle = 20, -- how frequently should the ui process render events
|
313 | 313 | },
|
314 | 314 | checker = {
|
315 |
| - -- automcatilly check for plugin updates |
| 315 | + -- automatically check for plugin updates |
316 | 316 | enabled = false,
|
317 | 317 | concurrency = nil, ---@type number? set to 1 to check for updates very slowly
|
318 | 318 | notify = true, -- get a notification when new updates are found
|
|
0 commit comments