From 52b736cbbb1ab452d0cdf984734ce13b2e551e86 Mon Sep 17 00:00:00 2001 From: Ryan Reed Date: Sat, 29 Jul 2023 14:01:49 -0400 Subject: [PATCH] Removing GREP_COLOR due to causing issues with some systems (Ubuntu terminal) --- dot_config/zsh/configs/colors.zsh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dot_config/zsh/configs/colors.zsh b/dot_config/zsh/configs/colors.zsh index 757bd1a..e8b7bb1 100644 --- a/dot_config/zsh/configs/colors.zsh +++ b/dot_config/zsh/configs/colors.zsh @@ -1,8 +1,7 @@ export CLICOLOR=1 # enable colored output from ls, etc. on FreeBSD-based systems if [ -x /usr/bin/dircolors ]; then - export GREP_COLOR='mt=1;32' - LS_COLORS_AUDIO="38;5;218" + export LS_COLORS_AUDIO="38;5;218" LS_COLORS_VIDEO="38;5;216" LS_COLORS_ARCHIVE="38;5;204" LS_COLORS_IMAGES="38;5;147"