mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-06-28 11:24:14 +00:00
Clarify the lazy config option
This commit is contained in:
parent
e42fccc3cd
commit
5e10669d14
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue