prezto/lib/grep.zsh
Sorin Ionescu 8efe424641 Merged custom/ and lib/.
Conflicts:

	custom/aliases.zsh
	custom/functions.zsh
	custom/grep.zsh
2011-08-30 23:39:37 -04:00

8 lines
176 B
Bash

if [[ "$DISABLE_COLOR" != "true" ]]; then
export GREP_OPTIONS='--color=auto'
export GREP_COLOR='37;45'
else
export GREP_OPTIONS='--color=none'
export GREP_COLOR=''
fi