mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-06-28 11:24:14 +00:00
Another variant of the lazy config option documentation
This commit is contained in:
parent
5e10669d14
commit
e136200587
1 changed files with 3 additions and 2 deletions
|
@ -297,9 +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 = {
|
||||||
-- Increase the laziness, see "Lazy Loading" documentation section for more information.
|
-- Enables lazy loading by default for plugins without triggers,
|
||||||
|
-- see the "Lazy Loading" documentation section for more information.
|
||||||
-- Note, this does not have same meaning as lazy = false in the plugin spec,
|
-- 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.
|
-- which can disable lazy loading completely.
|
||||||
lazy = 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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue