From 750e1cf656be5048bd72b8a9f19bea83fc396e16 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sun, 15 Feb 2009 15:36:34 +0100 Subject: [PATCH] Add alias for df to use -h. --- zsh/rc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zsh/rc b/zsh/rc index c04bf21..3c4234b 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' -- 2.44.2