Files
dotfiles/bashrc.d/fzf.bash
Paul Walker cede89534d Add fzf.bash
2019-10-18 09:04:45 +01:00

14 lines
326 B
Bash

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