14 lines
341 B
Bash
14 lines
341 B
Bash
|
# Setup fzf
|
||
|
# ---------
|
||
|
if [[ ! "$PATH" == */opt/homebrew/opt/fzf/bin* ]]; then
|
||
|
PATH="${PATH:+${PATH}:}/opt/homebrew/opt/fzf/bin"
|
||
|
fi
|
||
|
|
||
|
# Auto-completion
|
||
|
# ---------------
|
||
|
[[ $- == *i* ]] && source "/opt/homebrew/opt/fzf/shell/completion.zsh" 2> /dev/null
|
||
|
|
||
|
# Key bindings
|
||
|
# ------------
|
||
|
source "/opt/homebrew/opt/fzf/shell/key-bindings.zsh"
|