summaryrefslogtreecommitdiff
path: root/lib/grep.zsh
blob: 977435ee4041424f24efa25d3531697f4a706adf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#
# Color grep results
# Examples: http://rubyurl.com/ZXv
#

# avoid VCS folders
GREP_OPTIONS=
for PATTERN in .cvs .git .hg .svn; do
    GREP_OPTIONS+="--exclude-dir=$PATTERN "
done
GREP_OPTIONS+="--color=auto"
export GREP_OPTIONS="$GREP_OPTIONS"
export GREP_COLOR='1;32'