17 lines
330 B
Bash
17 lines
330 B
Bash
#!/usr/bin/env zsh
|
|
|
|
|
|
# Setup fzf
|
|
# ---------
|
|
if [[ ! "$PATH" == */opt/homebrew/opt/fzf/bin* ]]; then
|
|
PATH="${PATH:+${PATH}:}/opt/homebrew/opt/fzf/bin"
|
|
fi
|
|
|
|
# Auto-completion
|
|
# ---------------
|
|
source "/opt/homebrew/opt/fzf/shell/completion.zsh"
|
|
|
|
# Key bindings
|
|
# ------------
|
|
source "/opt/homebrew/opt/fzf/shell/key-bindings.zsh"
|