diff options
author | Matt Singleton <msingleton@aclu.org> | 2020-09-15 09:28:45 -0500 |
---|---|---|
committer | Matt Singleton <msingleton@aclu.org> | 2020-09-15 09:28:45 -0500 |
commit | 552ed4317e1f3688d7affc1637701c2024674e31 (patch) | |
tree | c049f414d5bf64deb5e6cdcd5c08e28263542db9 /zsh | |
parent | 350c9b6944e142c1faa4f27c945a8a1c7d226a7a (diff) |
GREP_OPTIONS deprecated
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/appearance.zsh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/zsh/appearance.zsh b/zsh/appearance.zsh index fb55827..3aca4f0 100644 --- a/zsh/appearance.zsh +++ b/zsh/appearance.zsh @@ -10,8 +10,10 @@ else fi # grep -export GREP_OPTIONS='--color=auto' export GREP_COLOR='1;32' +alias grep='grep --color=auto' +alias egrep='egrep --color=auto' +alias fgrep='fgrep --color=auto' # less export LESS_TERMCAP_mb=$'\e[0;31m' # begin blinking - red |