We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 528b8a6 commit 5f00c8dCopy full SHA for 5f00c8d
lib/neovim-plugin.nix
@@ -172,6 +172,10 @@
172
assertion = (isColorscheme && colorscheme != null) || cfg.lazyLoad.settings != { };
173
message = "You have enabled lazy loading for ${originalName} but have not provided any configuration.";
174
}
175
+ {
176
+ assertion = cfg.lazyLoad.enable && (config.plugins.lz-n.enable || config.plugins.lazy.enable);
177
+ message = "You have enabled lazy loading for ${originalName} but have not enabled any lazy loading plugins.";
178
+ }
179
];
180
plugins.lz-n = lib.mkIf config.plugins.lz-n.enable {
181
plugins = [
0 commit comments