Clarify the lazy config option

This commit is contained in:
Fred Sundvik 2023-10-23 16:22:53 +03:00
commit 5e10669d14

View file

@ -297,7 +297,10 @@ return {
{ {
root = vim.fn.stdpath("data") .. "/lazy", -- directory where plugins will be installed root = vim.fn.stdpath("data") .. "/lazy", -- directory where plugins will be installed
defaults = { 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, version = nil,
-- default `cond` you can use to globally disable a lot of plugins -- default `cond` you can use to globally disable a lot of plugins
-- when running inside vscode for example -- when running inside vscode for example