[utility] Change colour blue to bold blue
Since some terminal colour schemes have a too dark blue color that does not go well with a black background. And since some people actually use such colour schemes! :- ) Fixes #225
This commit is contained in:
parent
20c3f79743
commit
5387adb78e
1 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ if (( terminfo[colors] >= 8 )); then
|
|||
(( ! ${+LS_COLORS} )) && if [[ -s ${HOME}/.dir_colors ]]; then
|
||||
eval "$(dircolors --sh ${HOME}/.dir_colors)"
|
||||
else
|
||||
export LS_COLORS='di=34:ln=35:so=32:pi=33:ex=31:bd=1;36:cd=1;33:su=30;41:sg=30;46:tw=30;42:ow=30;43'
|
||||
export LS_COLORS='di=1;34:ln=35:so=32:pi=33:ex=31:bd=1;36:cd=1;33:su=30;41:sg=30;46:tw=30;42:ow=30;43'
|
||||
fi
|
||||
|
||||
alias ls='ls --group-directories-first --color=auto'
|
||||
|
@ -23,7 +23,7 @@ if (( terminfo[colors] >= 8 )); then
|
|||
else
|
||||
# BSD
|
||||
|
||||
(( ! ${+LSCOLORS} )) && export LSCOLORS='exfxcxdxbxGxDxabagacad'
|
||||
(( ! ${+LSCOLORS} )) && export LSCOLORS='ExfxcxdxbxGxDxabagacad'
|
||||
|
||||
# stock OpenBSD ls does not support colors at all, but colorls does.
|
||||
if [[ ${OSTYPE} == openbsd* ]]; then
|
||||
|
|
Loading…
Reference in a new issue