Added 'human' flag to df and free alias.

This commit is contained in:
Heavy 2022-01-28 09:01:59 +01:00
parent 7c9d6f9756
commit dabc2053b5

View File

@ -33,6 +33,10 @@ export LS_OPTIONS='--color=auto'
eval "$(dircolors -b)"
alias ls='ls $LS_OPTIONS'
# misc
alias df='df -h'
alias free='free -ht'
# Use vim if available
if type vim >/dev/null 2>/dev/null; then
alias vi=$(which vim)