chezmoi/dot_fzf.zsh
2020-07-15 11:15:51 +02:00

14 lines
340 B
Bash

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