diff --git a/config/zsh/interactive/fzf b/config/zsh/interactive/fzf index ba73f00..a110e76 100644 --- a/config/zsh/interactive/fzf +++ b/config/zsh/interactive/fzf @@ -1,3 +1,7 @@ #! zsh -export FZF_CTRL_R_OPTS="--sort" -[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh +if [[ -f ~/.fzf.zsh ]]; then + export FZF_CTRL_R_OPTS="--sort" + source ~/.fzf.zsh +else + bindkey '^R' history-incremental-search-backward +fi