1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-01 20:43:34 +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
parent cffc9938c7
commit 84fa81c7ac
No known key found for this signature in database

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