Files
dotfiles-zsh/.fzf.zsh
2024-02-18 14:37:40 -05:00

17 lines
394 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/chawley/.fzf/shell/completion.zsh"
# Key bindings
# ------------
source "/home/chawley/.fzf/shell/key-bindings.zsh"