mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-02-27 21:41:29 +00:00
Merge pull request #665 from horriblename/fix-lzn-disabled-lazy
Some checks failed
Check for typos in the source tree / check-typos (push) Has been cancelled
Some checks failed
Check for typos in the source tree / check-typos (push) Has been cancelled
lazy/lz.n: fix default un-lazy plugins
This commit is contained in:
commit
1d670b269a
1 changed files with 8 additions and 1 deletions
|
@ -172,7 +172,14 @@
|
|||
description = "Lazy-load on colorscheme.";
|
||||
};
|
||||
|
||||
lazy = mkBool false "Lazy-load manually, e.g. using `trigger_load`.";
|
||||
lazy = mkOption {
|
||||
type = nullOr bool;
|
||||
default = null;
|
||||
description = ''
|
||||
Force enable/disable lazy-loading. `null` means only lazy-load if
|
||||
a valid lazy-load condition is set e.g. `cmd`, `ft`, `keys` etc.
|
||||
'';
|
||||
};
|
||||
|
||||
priority = mkOption {
|
||||
type = nullOr int;
|
||||
|
|
Loading…
Add table
Reference in a new issue