X-Git-Url: https://git.grml.org/?a=blobdiff_plain;f=etc%2Fzsh%2Fzshrc;h=afcb5b760e72800d43d05505ab6e313f83995cc1;hb=2735a118643b1cdbea1928c9f726e706d7d6c604;hp=451b5ddcbf7880252b1afc77576648b73f67db21;hpb=b78f11c674d58383a4be2188f53a9f6a5d050320;p=grml-etc-core.git diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index 451b5dd..afcb5b7 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -431,8 +431,11 @@ ZSH_NO_DEFAULT_LOCALE=${ZSH_NO_DEFAULT_LOCALE:-0} typeset -ga ls_options typeset -ga grep_options + +# Colors on GNU ls(1) if ls --color=auto / >/dev/null 2>&1; then ls_options+=( --color=auto ) +# Colors on FreeBSD and OSX ls(1) elif ls -G / >/dev/null 2>&1; then ls_options+=( -G ) fi @@ -442,6 +445,7 @@ if ls -v / >/dev/null 2>&1; then ls_options+=( -v ) fi +# Color on GNU and FreeBSD grep(1) if grep --color=auto -q "a" <<< "a" >/dev/null 2>&1; then grep_options+=( --color=auto ) fi