summaryrefslogtreecommitdiff
path: root/.fzf.bash
blob: 703aeb5faa0912ff5f1e2a8eb3628cd97f2cbfd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Setup fzf
# ---------
if [[ ! "$PATH" == */home/tklauser/.fzf/bin* ]]; then
  export PATH="${PATH:+${PATH}:}/home/tklauser/.fzf/bin"
fi

# Auto-completion
# ---------------
[[ $- == *i* ]] && source "/home/tklauser/.fzf/shell/completion.bash" 2> /dev/null

# Key bindings
# ------------
source "/home/tklauser/.fzf/shell/key-bindings.bash"