FZF ignore

FZF now ignores files in `.git` and `.stversions` directories
This commit is contained in:
2024-03-12 19:57:35 -04:00
parent d33ced3f6e
commit 5bfa36bce1

View File

@@ -5,7 +5,7 @@ if [[ ! "$PATH" == *$HOME/.fzf/bin* ]]; then
fi fi
# Ignore .git directories # Ignore .git directories
export FZF_DEFAULT_COMMAND="find . \( -name .git \) -prune -o -print" export FZF_DEFAULT_COMMAND="find . \( -name .git -o -name .stversions \) -prune -o -print"
# Auto-completion # Auto-completion
# --------------- # ---------------