summaryrefslogtreecommitdiffstats
path: root/bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash')
-rw-r--r--bash/.bashrc5
1 files changed, 5 insertions, 0 deletions
diff --git a/bash/.bashrc b/bash/.bashrc
index 7bb7790..be81c7f 100644
--- a/bash/.bashrc
+++ b/bash/.bashrc
@@ -53,6 +53,11 @@ if [ -x /usr/bin/dircolors ]; then
alias egrep='egrep --color=auto'
fi
+# load ls_colors configuration if it exists (Arch)
+if [ -f /usr/share/LS_COLORS/dircolors.sh ]; then
+ . /usr/share/LS_COLORS/dircolors.sh
+fi
+
# ever seen a monochrome xterm? I sure haven't
if [ "$TERM" = "xterm" ]; then
export TERM=xterm-256color