Skip to content

Commit

Permalink
fix eza: Flag -F cannot take a value
Browse files Browse the repository at this point in the history
  • Loading branch information
seagle0128 committed Feb 7, 2024
1 parent 1d06735 commit cea3ebf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit cea3ebf

Please sign in to comment.