From 366535955f0d253b0fdae512b175fff2ad63aed8 Mon Sep 17 00:00:00 2001 From: surtur Date: Sun, 3 Jul 2022 12:13:23 +0200 Subject: [PATCH] zshrc(fzf): unexclude .git folders --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 7110a66..964d11d 100644 --- a/.zshrc +++ b/.zshrc @@ -110,7 +110,7 @@ bindkey -M vicmd 'J' history-substring-search-down HISTORY_SUBSTRING_SEARCH_FUZZY=" " - export FZF_DEFAULT_COMMAND="fd --type f --hidden --follow --exclude .git --exclude 'node_modules' ." + export FZF_DEFAULT_COMMAND="fd --type f --hidden --follow --exclude 'node_modules' ." export FZF_CTRL_T_COMMAND="fd --follow --full-path --base-directory . --exclude '.git' --exclude 'node_modules' ." export FZF_ALT_C_COMMAND="fd -H -t d ." export DISABLE_FZF_AUTO_COMPLETION="true"