diff options
Diffstat (limited to '.fzfrc')
-rwxr-xr-x | .fzfrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ # vim: ft=sh export FZF_DEFAULT_COMMAND='find . -type f' -if [ -f /usr/bin/fd ];then +if command -v fd &> /dev/null; then export FZF_DEFAULT_COMMAND='fd --type f --hidden --follow --exclude .git' fi |