From d268eb9172a22b79ca57d2ddb71c9344fe4c303b Mon Sep 17 00:00:00 2001 From: David Thurstenson Date: Thu, 28 Jan 2016 12:09:13 -0600 Subject: [PATCH] added -A to ls alias, added -h to la alias, removed lesspipe --- .bashrc | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.bashrc b/.bashrc index 74d5710..f1f9ee8 100644 --- a/.bashrc +++ b/.bashrc @@ -24,12 +24,6 @@ if [[ -s /usr/share/doc/pkgfile/command-not-found.bash ]];then source /usr/share/doc/pkgfile/command-not-found.bash fi -# Enable less syntax hilighting if src-hilight is installed -if [[ -s /usr/bin/src-hilite-lesspipe.sh ]]; then - export LESSOPEN="| /usr/bin/src-hilite-lesspipe.sh %s" - export LESS=' -R ' -fi - # If a directory is given without any # command, CD into it. shopt -s autocd @@ -62,9 +56,9 @@ fi ### ALIASES ### # Colorize all `ls` output: -alias ls='ls -F --color=auto' +alias ls='ls -AF --color=auto' # Map "la" to `ls -la` -alias la='ls -laF --color=auto' +alias la='ls -laFh --color=auto' # Colorize `grep` output alias grep='grep --color=auto'