changed ls output to not show . and .. and show human readable filesizes

This commit is contained in:
Sheppy
2017-01-04 03:35:10 +01:00
parent 304a3e8b34
commit a26588dda5

4
zshrc
View File

@@ -144,8 +144,8 @@ alias wordcount="find . -type f -exec cat {} + | wc -w"
## LS ##
LS_COLORS=$LS_COLORS:'di=0;35:'; export LS_COLORS
alias la="ls -la --color=auto"
alias ll="ls -ll --color=auto"
alias la="ls -lAh --color=auto"
alias ll="ls -llh --color=auto"
alias ls="ls --color=auto"
## SSH-KEYS ##