From 3383b4399621156cef8e6a88a2b1c6fd39aa51a1 Mon Sep 17 00:00:00 2001 From: Marc Jakobi Date: Fri, 21 Jun 2024 09:45:50 +0200 Subject: [PATCH] docs: add more specific info on `[1]` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b2e3805..6010c4b 100755 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ require("lz.n").load(plugins) | Property | Type | Description | `lazy.nvim` eqivalent | |------------------|------|-------------|-----------------------| -| **[1]** | `string` | The plugin's name (not the module name). | `name`[^1] | +| **[1]** | `string` | The plugin's name (not the module name). This is what is passed to the `load(name)` function. | `name`[^1] | | **enabled** | `boolean?` or `fun():boolean` | When `false`, or if the `function` returns false, then this plugin will not be included in the spec. | `enabled` | | **beforeAll** | `fun(lz.n.Plugin)?` | Always executed before any plugins are loaded. | `init` | | **before** | `fun(lz.n.Plugin)?` | Executed before a plugin is loaded. | None |