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'