summaryrefslogtreecommitdiff
path: root/.config/bash/aliases.sh
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2015-02-03 22:18:59 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-02-03 22:18:59 -0500
commitcb170078f7fe918b880da0dbcccc622a8b480451 (patch)
tree21538ae477b21c730d499082a75e59dd88c26a5a /.config/bash/aliases.sh
parentcbeab00f4a3da0c6292373587312e21da198347e (diff)
parent26c23840ee5780b8444423e74607187f000a0877 (diff)
Merge branch 'master' into build64-par/master
Diffstat (limited to '.config/bash/aliases.sh')
-rw-r--r--.config/bash/aliases.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/.config/bash/aliases.sh b/.config/bash/aliases.sh
index fe4f2c6..28b9923 100644
--- a/.config/bash/aliases.sh
+++ b/.config/bash/aliases.sh
@@ -6,10 +6,11 @@
# Set up colors and settings for ls/dir/vdir #
######################################################################
if [ -x "`which dircolors`" ]; then
- eval "`dircolors -b`"
+ eval "$(dircolors -p | cat - "${XDG_CONFIG_HOME}/dir_colors" |
+ dircolors -b -)"
alias ls='ls -1v --color=auto'
alias dir='dir -v --color=auto'
- alias vdir='vdir -v--color=auto'
+ alias vdir='vdir -v --color=auto'
for xgrep in ${PATH//:/\/*grep }/*grep; do
if [ -f "$xgrep" ]; then