mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 15:14:26 +00:00
fzf: add mkOrder for fish like we do for other shells
This commit is contained in:
parent
cffc9938c7
commit
84fa81c7ac
1 changed files with 4 additions and 3 deletions
|
@ -190,8 +190,9 @@ in {
|
|||
fi
|
||||
'');
|
||||
|
||||
programs.fish.interactiveShellInit = mkIf cfg.enableFishIntegration ''
|
||||
source ${cfg.package}/share/fzf/key-bindings.fish && fzf_key_bindings
|
||||
'';
|
||||
programs.fish.interactiveShellInit = mkIf cfg.enableFishIntegration
|
||||
(mkOrder 200 ''
|
||||
source ${cfg.package}/share/fzf/key-bindings.fish && fzf_key_bindings
|
||||
'');
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue