[zsh] add aliases for tree listing

This commit is contained in:
Dmytro Meleshko 2019-12-09 19:49:50 +02:00
parent 2114cfc5c7
commit c7df8535ea
1 changed files with 2 additions and 0 deletions

View File

@ -17,7 +17,9 @@ if command_exists exa; then
alias ls='exa --classify --group-directories-first'
alias lsa='ls --all'
alias l='ls --long --header --binary --group'
alias lt='l --tree'
alias la='l --all'
alias lat='la --tree'
alias tree='ls --tree'
else
alias ls='ls --classify --group-directories-first --color=auto'