mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-31 04:04:32 +00:00
correct fish/zsh flip
This commit is contained in:
parent
160875183f
commit
7067da8a31
1 changed files with 6 additions and 6 deletions
|
@ -23,17 +23,17 @@ let
|
|||
fishIntegration = ''
|
||||
${getExe pkgs.mcfly} init fish | source
|
||||
'' + optionalString cfg.fzf.enable ''
|
||||
if [[ -o interactive ]]; then
|
||||
${getExe pkgs.mcfly-fzf} init fish | source
|
||||
fi
|
||||
if status is-interactive
|
||||
eval "$(${getExe pkgs.mcfly-fzf} init zsh)"
|
||||
end
|
||||
'';
|
||||
|
||||
zshIntegration = ''
|
||||
eval "$(${getExe pkgs.mcfly} init zsh)"
|
||||
'' + optionalString cfg.fzf.enable ''
|
||||
if status is-interactive
|
||||
eval "$(${getExe pkgs.mcfly-fzf} init zsh)"
|
||||
end
|
||||
if [[ -o interactive ]]; then
|
||||
${getExe pkgs.mcfly-fzf} init fish | source
|
||||
fi
|
||||
'';
|
||||
|
||||
in {
|
||||
|
|
Loading…
Add table
Reference in a new issue