From a4019ac53a423af9967f5e8ec0458651a63c7b3c Mon Sep 17 00:00:00 2001 From: bretello Date: Fri, 15 Sep 2023 11:33:53 +0200 Subject: [PATCH] zsh: fix FZF_CTRL_T_COMMAND --- brethil_dotfile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brethil_dotfile.sh b/brethil_dotfile.sh index 7e94be2..3602788 100755 --- a/brethil_dotfile.sh +++ b/brethil_dotfile.sh @@ -18,7 +18,7 @@ antibody bundle < "$DOTFILES/antibody_plugins.txt" source $DOTFILES/completion_style.zsh source $DOTFILES/extras/fzf-tab-config.zsh -if command -v fd >/dev/null; then +if command -vp fd >/dev/null; then export FZF_CTRL_T_COMMAND='fd' else export FZF_CTRL_T_COMMAND='find'