zshrc(fzf): unexclude .git folders

This commit is contained in:
surtur 2022-07-03 12:13:23 +02:00
parent a96f4d335c
commit 366535955f
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

2
.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"