From cea3ebfb5c76273854d4eb07ef1447a7dc32e90c Mon Sep 17 00:00:00 2001 From: Vincent Zhang Date: Wed, 7 Feb 2024 12:38:56 +0800 Subject: [PATCH] fix eza: Flag -F cannot take a value --- .zshrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 225e846..cf09d56 100644 --- a/.zshrc +++ b/.zshrc @@ -198,10 +198,11 @@ alias c='clear' # See https://github.com/ibraheemdev/modern-unix if (( $+commands[eza] )); then alias ls='eza --color=auto --icons --group-directories-first' + alias la='ls -lhAF' alias tree='ls --tree' elif (( $+commands[exa] )); then alias ls='exa --color=auto --icons --group-directories-first' - alias la='ls -laFh' + alias la='ls -lahF' alias tree='ls --tree' fi (( $+commands[bat] )) && alias cat='bat -p --wrap character'