1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-31 04:04:32 +00:00

fzf: fix zsh integration (keybinds rewritten by omz)

This commit is contained in:
Clement Bouvet 2025-03-27 08:54:38 +01:00
parent 693840c01b
commit 38464aab1c

View file

@ -195,8 +195,10 @@ in {
# Note, since fzf unconditionally binds C-r we use `mkOrder` to make the
# initialization show up a bit earlier. This is to make initialization of
# other history managers, like mcfly or atuin, take precedence.
# Still needs to be initialized after oh-my-zsh (order 800), otherwise
# omz will take precedence.
programs.zsh.initContent =
mkIf cfg.enableZshIntegration (mkOrder 200 zshIntegration);
mkIf cfg.enableZshIntegration (mkOrder 810 zshIntegration);
programs.fish.interactiveShellInit =
mkIf cfg.enableFishIntegration (mkOrder 200 fishIntegration);