# Setup fzf # --------- if [[ ! "$PATH" == */opt/homebrew/opt/fzf/bin* ]]; then export PATH="${PATH:+${PATH}:}/opt/homebrew/opt/fzf/bin" fi # using fd instead of find export FZF_DEFAULT_COMMAND='fd --type f --hidden --follow --exclude .git' # 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"