]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - shell/aliases
Merge remote branch 'rammstein/master'
[config/dotfiles.git] / shell / aliases
index 5484fc9aedf2ba358682978798efeb4bf49a880f..1e601c2da988ca6ad62fbb1e39be485c15c101e2 100644 (file)
@@ -7,8 +7,9 @@ alias c='clear'
 alias e='elinks'
 alias g='git'
 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
@@ -48,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
@@ -61,8 +62,12 @@ unset ls_color
 la() {
     ls -a $*
 }
-# Helper function to list all files in list format with access rights, etc.
+# Helper function to list the files in list format with access rights, etc.
 ll() {
+    ls -l $*
+}
+# Helper function to list all files in list format with access rights, etc.
+lal() {
     la -l $*
 }