From a2cf01a9279782be76bb043c621f3bd7a0d1f032 Mon Sep 17 00:00:00 2001 From: Matt Singleton Date: Tue, 10 Oct 2023 10:25:37 -0500 Subject: more readable terminal colors for grep and less --- config/all/zsh/20-appearance.zsh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'config/all/zsh/20-appearance.zsh') diff --git a/config/all/zsh/20-appearance.zsh b/config/all/zsh/20-appearance.zsh index 97c42a0..848e7e2 100644 --- a/config/all/zsh/20-appearance.zsh +++ b/config/all/zsh/20-appearance.zsh @@ -16,18 +16,17 @@ else fi # grep -export GREP_COLORS='mt=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 -export LESS_TERMCAP_md=$'\e[0;34m' # begin bold - blue +export LESS_TERMCAP_mb=$'\e[1;31m' # begin blinking - bold red +export LESS_TERMCAP_md=$'\e[1;34m' # begin bold - bold blue export LESS_TERMCAP_me=$'\e[0m' # end mode -export LESS_TERMCAP_so=$'\e[30;46m' # begin standout mode - black on cyan +export LESS_TERMCAP_so=$'\e[1;33;47m' # begin standout mode - bold yellow on light gray ("white") export LESS_TERMCAP_se=$'\e[0m' # end standout mode -export LESS_TERMCAP_us=$'\e[4;33m' # begin underline - yellow underline +export LESS_TERMCAP_us=$'\e[4;36m' # begin underline - cyan underline export LESS_TERMCAP_ue=$'\e[0m' # end underline # -- cgit v1.2.3