summaryrefslogtreecommitdiff
path: root/.config/bash
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2015-02-04 15:17:37 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-02-04 15:17:37 -0500
commita6f973687fb4a1a4558f74f7da595b6902a5dce0 (patch)
tree7111ad988010e6acb89cba4ec70bb770aa169474 /.config/bash
parentecba0ac071cb866a1a80e8614db27fc4434f07b8 (diff)
parent26c23840ee5780b8444423e74607187f000a0877 (diff)
Merge branch 'master' of git://lukeshu.com/dotfiles
Diffstat (limited to '.config/bash')
-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