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 af1ce0d commit ee6ccaaCopy full SHA for ee6ccaa
plugins/by-name/friendly-snippets/default.nix
@@ -27,7 +27,9 @@ lib.nixvim.plugins.mkVimPlugin {
27
{
28
when =
29
config.performance.combinePlugins.enable
30
- && !(builtins.elem "friendly-snippets" config.performance.combinePlugins.standalonePlugins)
+ && !(builtins.elem "friendly-snippets" (
31
+ map lib.getName config.performance.combinePlugins.standalonePlugins
32
+ ))
33
&& (enabledConsumers != [ ]);
34
message = ''
35
When using ${options.performance.combinePlugins.enable}, ${options.plugins.friendly-snippets.enable} and ${enabledConsumersPretty}:
0 commit comments