dotfiles/.fzf.zsh

16 lines
374 B
Bash
Raw Normal View History

2024-10-18 01:46:03 -05:00
# 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
# ------------
2024-12-02 20:28:36 +00:00
# source "/opt/homebrew/opt/fzf/shell/key-bindings.zsh"
source "$HOME/.fzf.zsh.local"