diff --git a/.config/zsh/zshrc.d/90-external-plugins/45-fzf-tab-config b/.config/zsh/zshrc.d/90-external-plugins/45-fzf-tab-config index 69cc7cb..43f9f3e 100644 --- a/.config/zsh/zshrc.d/90-external-plugins/45-fzf-tab-config +++ b/.config/zsh/zshrc.d/90-external-plugins/45-fzf-tab-config @@ -6,7 +6,7 @@ zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS} # Preview files and folders # NOTE: Find out more about current context with h (( $+commands[bat] )) && file_prev_cmd="bat --color=always" || file_prev_cmd=cat -(( $+commands[tree] )) && dir_prev_cmd="tree -C" || dir_prev_cmd=ls +(( $+commands[tree] )) && dir_prev_cmd="tree -C -L 3" || dir_prev_cmd=ls read -r -d '' preview_cmd <