12 lines
321 B
Bash
12 lines
321 B
Bash
# Setup fzf
|
|
# ---------
|
|
fzf_version="$(fzf --version | cut -d ' ' -f1 | tr -d '[:space:]')"
|
|
|
|
# Auto-completion
|
|
# ---------------
|
|
[[ $- == *i* ]] && source "/opt/homebrew/Cellar/fzf/${fzf_version}/shell/completion.zsh"
|
|
|
|
# Key bindings
|
|
# ------------
|
|
source "/opt/homebrew/Cellar/fzf/${fzf_version}/shell/key-bindings.zsh"
|