From b622b63c74c6e010c67d70d1ce18a285f586f795 Mon Sep 17 00:00:00 2001 From: tomit4 Date: Wed, 27 Apr 2022 09:34:54 -0700 Subject: [PATCH] changed color output of man pages --- bashrc.txt | 6 +++--- zshrc.txt | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bashrc.txt b/bashrc.txt index e6c42bb5..683e44bc 100644 --- a/bashrc.txt +++ b/bashrc.txt @@ -17,13 +17,13 @@ set -o vi bind -m vi-insert 'Control-l: clear-screen' # Colorizes man pages -export LESS_TERMCAP_mb=$'\e[1;32m' -export LESS_TERMCAP_md=$'\e[1;32m' +export LESS_TERMCAP_mb=$'\e[1;34m' +export LESS_TERMCAP_md=$'\e[1;34m' export LESS_TERMCAP_me=$'\e[0m' export LESS_TERMCAP_se=$'\e[0m' export LESS_TERMCAP_so=$'\e[01;33m' export LESS_TERMCAP_ue=$'\e[0m' -export LESS_TERMCAP_us=$'\e[1;4;31m' +export LESS_TERMCAP_us=$'\e[1;4;33m' # clears the history completely upon loading bash diff --git a/zshrc.txt b/zshrc.txt index 3cc0e351..3217c3c9 100644 --- a/zshrc.txt +++ b/zshrc.txt @@ -10,13 +10,13 @@ export TUIR_BROWSER=librewolf export EDITOR=nvim # Colorizes man pages -export LESS_TERMCAP_mb=$'\e[1;32m' -export LESS_TERMCAP_md=$'\e[1;32m' +export LESS_TERMCAP_mb=$'\e[1;34m' +export LESS_TERMCAP_md=$'\e[1;34m' export LESS_TERMCAP_me=$'\e[0m' export LESS_TERMCAP_se=$'\e[0m' export LESS_TERMCAP_so=$'\e[01;33m' export LESS_TERMCAP_ue=$'\e[0m' -export LESS_TERMCAP_us=$'\e[1;4;31m' +export LESS_TERMCAP_us=$'\e[1;4;33m' # Formats history command with dates/times export HISTTIMEFORMAT="%d/%m/%y %T "