skim: add fish integration

Add fish integration to `programs.skim`.

PR #1549
This commit is contained in:
happysalada 2020-10-10 14:16:50 +09:00 committed by Robert Helgesson
parent 57518cd0bf
commit fc5619764e
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
1 changed files with 12 additions and 0 deletions

View File

@ -91,6 +91,14 @@ in {
Whether to enable Zsh integration.
'';
};
enableFishIntegration = mkOption {
default = true;
type = types.bool;
description = ''
Whether to enable Fish integration.
'';
};
};
config = mkIf cfg.enable {
@ -120,5 +128,9 @@ in {
. ${pkgs.skim}/share/skim/key-bindings.zsh
fi
'';
programs.fish.shellInit = mkIf cfg.enableFishIntegration ''
source ${pkgs.skim}/share/skim/key-bindings.fish && skim_key_bindings
'';
};
}