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 ac60089 commit 0ba41f8Copy full SHA for 0ba41f8
plugins/by-name/zk/default.nix
@@ -98,13 +98,13 @@ lib.nixvim.plugins.mkNeovimPlugin {
98
99
};
100
101
- extraConfig = cfg: {
+ extraConfig = cfg: opts: {
102
warnings = lib.nixvim.mkWarnings "plugins.zk" (
103
mapAttrsToList
104
(picker: pluginName: {
105
when = (cfg.settings.picker == picker) && !config.plugins.${pluginName}.enable;
106
message = ''
107
- You have set `plugins.zk.settings.picker = "${picker}"` but `plugins.${pluginName}` is not enabled in your config.
+ You have defined `${opts.settings}.picker = "${picker}"` but `plugins.${pluginName}` is not enabled.
108
'';
109
})
110
{
0 commit comments