chezmoi/dot_fzf.zsh
2020-07-19 21:11:36 +02:00

14 lines
306 B
Bash

# Setup fzf
# ---------
if [[ ! "$PATH" == */$HOME/.fzf/bin* ]]; then
export PATH="${PATH:+${PATH}:}/$HOME/.fzf/bin"
fi
# Auto-completion
# ---------------
[[ $- == *i* ]] && source "$HOME/.fzf/shell/completion.zsh" 2> /dev/null
# Key bindings
# ------------
source "$HOME/.fzf/shell/key-bindings.zsh"