dotfiles/.fzf.zsh
2019-03-31 21:55:42 +02:00

15 lines
342 B
Bash

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