From 5e10669d149847e47a1a66448bf2a451fd4848ba Mon Sep 17 00:00:00 2001 From: Fred Sundvik Date: Mon, 23 Oct 2023 16:22:53 +0300 Subject: [PATCH] Clarify the lazy config option --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ebcca6a..3a18a8b 100644 --- a/README.md +++ b/README.md @@ -297,7 +297,10 @@ return { { root = vim.fn.stdpath("data") .. "/lazy", -- directory where plugins will be installed defaults = { - lazy = false, -- should plugins be lazy-loaded? + -- Increase the laziness, see "Lazy Loading" documentation section for more information. + -- Note, this does not have same meaning as lazy = false in the plugin spec, + -- so plugins with triggers are still lazily loaded when set to false. + lazy = false, version = nil, -- default `cond` you can use to globally disable a lot of plugins -- when running inside vscode for example