]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - shell/aliases
shell/logout: Ignore errors if sudo isn't installed.
[config/dotfiles.git] / shell / aliases
index 8edbc3f1e41fcd5219e3b603f9467700422d5a66..1e601c2da988ca6ad62fbb1e39be485c15c101e2 100644 (file)
@@ -10,7 +10,6 @@ alias m='mutt'
 alias p='less' # p for pager
 alias s='mpc'  # s for sound, m is already used
 alias v='vim'
-alias vi='vim'
 
 
 # Improved ls which displays the files in columns (-C), visualizes
@@ -50,7 +49,7 @@ if [ x$ls_color = xgnu ]; then
 # Normal ls with colors.
 elif [ x$ls_color = xcli ]; then
     ls() {
-        CLICOLOR_FORCE=1 my_ls $*
+        CLICOLOR_FORCE=1 my_ls -G $*
     }
 # Simple ls with no colors.
 else