X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;ds=sidebyside;f=zsh%2Frc;h=aa64848ce2b2ecb532da8f063ab9da62b660493f;hb=dd87c200babeaa8006cbe7df050e1477c84a5aba;hp=c04bf215a7b00747fe5d286afd64f83e94cfd98a;hpb=cdc49c3e88de959b760dab5076df2253d503610e;p=config%2Fdotfiles.git diff --git a/zsh/rc b/zsh/rc index c04bf21..aa64848 100644 --- a/zsh/rc +++ b/zsh/rc @@ -241,6 +241,9 @@ alias diff='diff -u' # Display all files and use human readable sizes. alias du='du -sh' +# Use human readable sizes. +alias df='df -h' + # Multiple files given to Vim are opened in tabs, supported since Vim 7. if [[ ${${${(f)"$(vim --version)"}[1]#VIM - Vi IMproved }%% *} == 7* ]]; then alias vim='vim -p' @@ -317,3 +320,5 @@ source_config ~/.zsh os rc $(uname) nolocal source_config ~/.zsh host rc ${$(hostname)//.*/} source_debug "finished sourcing ~/.zsh/rc" + +# vim: ft=zsh