skel/.fzf.bash

14 lines
334 B
Bash
Raw Permalink Normal View History

2019-08-01 20:16:38 +00:00
# Setup fzf
# ---------
2019-08-02 22:17:33 +00:00
if [[ ! "$PATH" == */opt/services/fzf/bin* ]]; then
export PATH="${PATH:+${PATH}:}/opt/services/fzf/bin"
2019-08-01 20:16:38 +00:00
fi
# Auto-completion
# ---------------
2019-08-02 22:17:33 +00:00
[[ $- == *i* ]] && source "/opt/services/fzf/shell/completion.bash" 2> /dev/null
2019-08-01 20:16:38 +00:00
# Key bindings
# ------------
2019-08-02 22:17:33 +00:00
source "/opt/services/fzf/shell/key-bindings.bash"