Files
dotfiles-zsh/.fzf.zsh

17 lines
378 B
Bash

# Setup fzf
# ---------
if [[ ! "$PATH" == */home/chawley/.fzf/bin* ]]; then
PATH="${PATH:+${PATH}:}/home/chawley/.fzf/bin"
fi
# Ignore .git directories
export FZF_DEFAULT_COMMAND="find . \( -name .git \) -prune -o -print"
# Auto-completion
# ---------------
source "$HOME/.fzf/shell/completion.zsh"
# Key bindings
# ------------
source "$HOME/.fzf/shell/key-bindings.zsh"