From 67bbdc79b100dad989b0a33a4648cb0e1ed7aca2 Mon Sep 17 00:00:00 2001 From: Mathieu Maret Date: Thu, 15 Sep 2022 15:50:56 +0200 Subject: [PATCH] Correct GREP_COLOR deprecated opt --- .zsh/00_basic.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zsh/00_basic.zsh b/.zsh/00_basic.zsh index 447c37a..598284c 100644 --- a/.zsh/00_basic.zsh +++ b/.zsh/00_basic.zsh @@ -107,7 +107,7 @@ fi unfunction grep-flag-available #export GREP_OPTIONS="$GREP_OPTIONS" -export GREP_COLOR='1;31' +export GREP_COLOR='mt=1;31' alias grep="grep $GREP_OPT"