dotfiles/zsh/zsh.symlink/fzf.zsh
Max Bucknell 033a722ec5 Got a new computer
* Update vim to be a functional secondary editor
* Update gitconfig and zsh for new homebrew config
2022-06-05 00:24:03 +10:00

14 lines
338 B
Bash

# Setup fzf
# ---------
if [[ ! "$PATH" == */opt/homebrew/opt/fzf/bin* ]]; then
export 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"