This commit is contained in:
Georgy Yakovlev 2016-04-24 22:49:05 -07:00 committed by Georgy Yakovlev
parent fcc4c573a8
commit 48ea39523e
1 changed files with 9 additions and 2 deletions

View File

@ -30,8 +30,15 @@ else
# colors for ls and completion
export LSCOLORS='exfxcxdxbxGxDxabagacad'
export LS_COLORS='di=34:ln=35:so=32:pi=33:ex=31:bd=36;01:cd=33;01:su=31;40;07:sg=36;40;07:tw=32;40;07:ow=33;40;07:'
alias ls='ls -G'
# stock OpenBSD ls does not support colors at all, but colorls does.
if [[ $OSTYPE == openbsd* ]]; then
if (( ${+commands[colorls]} )); then
alias ls='colorls -G'
fi
else
alias ls='ls -G'
fi
fi