1
0
Fork 0
mirror of synced 2024-05-24 11:10:30 -04:00

add comments and fix BSD ls typo

This commit is contained in:
Matt Hamilton 2015-12-29 05:34:13 -05:00
parent b28cdf2f13
commit be99dc0971

View file

@ -8,6 +8,7 @@
#
if (( ${+commands[dircolors]} )); then
# GNU
if [[ -s ${HOME}/.dir_colors ]]; then
eval "$(dircolors --sh ${HOME}/.dir_colors)"
else
@ -17,7 +18,9 @@ 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:'