From 86126fedafca5f9157ee1d49a3a7c9c74a779d84 Mon Sep 17 00:00:00 2001 From: Hyacinthe Cartiaux Date: Mon, 12 Sep 2022 10:38:26 +0200 Subject: [PATCH] [zsh] GREP_COLOR is deprecated --- zsh/zshrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zsh/zshrc b/zsh/zshrc index 2cb3353..ac2016d 100755 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -161,4 +161,7 @@ alias -g NE="2> /dev/null" # Redirect stderr to /dev/null # eval $(dircolors --sh) -export GREP_COLOR=31 +export GREP_COLORS='mt=31' + +# Add RVM to PATH for scripting. Make sure this is the last PATH variable change. +export PATH="$PATH:$HOME/.rvm/bin"