blob: f8035d9732a5cd4c303dedb3e72fcb7433785275 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Setup fzf
# ---------
if [[ ! "$PATH" == *${FZF_PATH}/bin* ]]; then
export PATH="$PATH:${FZF_PATH}/bin"
fi
# Auto-completion
# ---------------
[[ $- == *i* ]] && source "${FZF_PATH}/shell/completion.zsh" 2> /dev/null
# Key bindings
# ------------
source "${FZF_PATH}/shell/key-bindings.zsh"
|