]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - shell/aliases
shell/aliases: Fix colors in normal ls.
[config/dotfiles.git] / shell / aliases
index 3e03942a6e63563e938a87c1a18980a82de3c2b6..d9e827e5d8e2f363d2997407f9ef7146a156e46f 100644 (file)
@@ -7,6 +7,8 @@ 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'
 
@@ -48,7 +50,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