zshrc/zsh.d/50_listings.zsh
2024-09-04 12:15:56 +02:00

12 lines
289 B
Bash

# vim: ft=zsh
if command-exists dircolors; then
eval "$(dircolors -b)"
fi
if command-exists eza; then
alias ls='eza --git --long --all --time-style long-iso'
else
LSOPTS="-lAvF --color=auto" # long mode, show all, natural sort, type squiggles, friendly sizes
alias ls="ls $LSOPTS"
fi