mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-13 03:01:32 +01:00
10 lines
185 B
Bash
10 lines
185 B
Bash
#
|
|
# Color grep results
|
|
# Examples: http://rubyurl.com/ZXv
|
|
#
|
|
|
|
# avoid VCS folders
|
|
GREP_OPTIONS=
|
|
GREP_OPTIONS+="--color=auto"
|
|
export GREP_OPTIONS="$GREP_OPTIONS"
|
|
export GREP_COLOR='1;32'
|