From 3e8ddf69b07ac7dbeb2edd2e7adfbdb2dc75d1f6 Mon Sep 17 00:00:00 2001 From: Aaron <79121360+UnrealApex@users.noreply.github.com> Date: Thu, 22 Dec 2022 22:03:45 -0800 Subject: [PATCH] Update README.md Co-authored-by: Jonas Strittmatter <40792180+smjonas@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 928d715..4ba4a44 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ require("lazy").setup({ | **url** | `string?` | A custom git url where the plugin is hosted | | **name** | `string?` | A custom name for the plugin used for the local plugin directory and as the display name | | **dev** | `boolean?` | When `true`, a local plugin directory will be used instead. See `config.dev` | -| **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 | +| **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 | | **enabled** | `boolean?` or `fun():boolean` | When `false`, or if the `function` returns false, then this plugin will not be used | | **dependencies** | `LazySpec[]` | A list of plugin specs that should be loaded when the plugin loads. Dependencies are always lazy-loaded unless specified otherwise | | **init** | `fun(LazyPlugin)` | `init` functions are always executed during startup |