[zsh] fixes dircolors

path was relative and breaking
This commit is contained in:
Josh Sherman 2017-02-04 20:31:41 -06:00
parent 844691c939
commit 82f786d347
No known key found for this signature in database
GPG key ID: 55B058A80530EF22

2
zshrc
View file

@ -17,7 +17,7 @@ if [ $OS = 'Linux' ]; then
alias pbpaste='xclip -selection clipboard -o'
if [ -x /usr/bin/dircolors ]; then
eval `dircolors ./vendor/seebi/dircolors-solarized/dircolors.ansi-dark`
eval `dircolors $DOTFILES/vendor/seebi/dircolors-solarized/dircolors.ansi-dark`
alias ls="ls --color=auto"
GREP_FLAGS=" --color=auto --exclude-dir=${GREP_EXCLUDE_DIR}"