Swap out ls for LSDeluxe, when it's available
This commit is contained in:
parent
6c5bb34c02
commit
be45d2516a
1 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,9 @@
|
|||
#! zsh
|
||||
alias ls='ls -F --color=auto'
|
||||
if (( $+commands[lsd] )); then
|
||||
alias ls=lsd
|
||||
else
|
||||
alias ls='ls -F --color=auto'
|
||||
fi
|
||||
alias lsl='ls -lh'
|
||||
alias grep='grep --color=auto'
|
||||
alias egrep='egrep --color=auto'
|
||||
|
|
Loading…
Reference in a new issue