1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-23 11:39:46 +01:00

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

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
'';
};
}