This repository has been archived on 2022-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
prezto/lib/grep.zsh

9 lines
176 B
Bash
Raw Normal View History

2011-02-27 10:13:57 -05:00
if [[ "$DISABLE_COLOR" != "true" ]]; then
export GREP_OPTIONS='--color=auto'
export GREP_COLOR='37;45'
else
export GREP_OPTIONS='--color=none'
export GREP_COLOR=''
2011-02-27 10:13:57 -05:00
fi