1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-21 05:47:29 +02:00

fzf: add mkOrder for fish like we do for other shells

This commit is contained in:
r-vdp 2023-10-18 11:37:24 +02:00 committed by Mikilio
parent c1f8ffca76
commit f1ca52127d
No known key found for this signature in database
GPG key ID: 5B2F1A890CF33F3F

View file

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