From 5bfa36bce10d8f2105a2b84823e83e0c38b69ebd Mon Sep 17 00:00:00 2001 From: chawley Date: Tue, 12 Mar 2024 19:57:35 -0400 Subject: [PATCH] FZF ignore FZF now ignores files in `.git` and `.stversions` directories --- .fzf.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.fzf.zsh b/.fzf.zsh index d5130ec..bf550fc 100644 --- a/.fzf.zsh +++ b/.fzf.zsh @@ -5,7 +5,7 @@ if [[ ! "$PATH" == *$HOME/.fzf/bin* ]]; then fi # 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 # ---------------