]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
Add alias for df to use -h.
authorSimon Ruderich <simon@ruderich.org>
Sun, 15 Feb 2009 14:36:34 +0000 (15:36 +0100)
committerSimon Ruderich <simon@ruderich.org>
Mon, 16 Feb 2009 15:34:43 +0000 (16:34 +0100)
zsh/rc

diff --git a/zsh/rc b/zsh/rc
index c04bf215a7b00747fe5d286afd64f83e94cfd98a..3c4234be89931d95530895a2f9d9011e56e691c8 100644 (file)
--- 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'