reverting color change, not osx compatible

This commit is contained in:
Andrew Davidson 2020-05-20 09:51:12 -04:00
parent 5ca47450ad
commit b79f19db90
Signed by: amd
GPG key ID: 17AF8F2A49CF25C6

View file

@ -1,10 +1,9 @@
# Lazy
alias ..='cd ..'
alias lh='ls --color -d .*' # show hidden files/directories only
alias lsd='ls -aFhlG --color'
alias l='ls -al --color'
alias ls='ls -GFh --color' # Colorize output, add file type indicator, and put sizes in human readable format
alias ll='ls -GFhl --color' # Same as above, but in long listing format
alias lh='ls -d .*' # show hidden files/directories only
alias lsd='ls -aFhlG '
alias l='ls -al '
alias ll='ls -GFhl ' # Same as above, but in long listing format
# List directories sorted by size
alias dus='du -sckx * | sort -nr'