add comments and fix BSD ls typo
This commit is contained in:
parent
b28cdf2f13
commit
be99dc0971
1 changed files with 5 additions and 2 deletions
|
@ -8,6 +8,7 @@
|
|||
#
|
||||
|
||||
if (( ${+commands[dircolors]} )); then
|
||||
# GNU
|
||||
if [[ -s ${HOME}/.dir_colors ]]; then
|
||||
eval "$(dircolors --sh ${HOME}/.dir_colors)"
|
||||
else
|
||||
|
@ -17,11 +18,13 @@ if (( ${+commands[dircolors]} )); then
|
|||
alias ls='ls --group-directories-first --color=auto'
|
||||
|
||||
else
|
||||
# if we can't call dircolors, use generic preset
|
||||
# BSD
|
||||
|
||||
# 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'
|
||||
alias ls='ls -G'
|
||||
fi
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue