Cleanup termcap variables and comments

master
Jordan Atwood 2 years ago
parent 9af5a706f8
commit ea91d385d4
Signed by: nightfirecat
GPG Key ID: 615A619C2D73A6DF
  1. 10
      src/.bash_profile

@ -45,12 +45,12 @@ if hash less >/dev/null 2>&1; then
# Add man page colors # Add man page colors
# Color scheme sourced from: https://unix.stackexchange.com/a/329092/136537 # Color scheme sourced from: https://unix.stackexchange.com/a/329092/136537
export LESS_TERMCAP_mb=$'\e[1;31m' # begin blink export LESS_TERMCAP_mb=$'\e[1;31m' # begin blink (bright red)
export LESS_TERMCAP_md=$'\e[1;33m' # begin bold export LESS_TERMCAP_md=$'\e[1;33m' # begin bold (bright yellow)
export LESS_TERMCAP_so=$'\e[01;44;37m' # begin reverse video (aka standout) export LESS_TERMCAP_so=$'\e[1;44;37m' # begin reverse video, aka standout (bright white on blue background)
export LESS_TERMCAP_us=$'\e[01;37m' # begin underline export LESS_TERMCAP_us=$'\e[1;37m' # begin underline (bright white)
export LESS_TERMCAP_me=$'\e[0m' # reset bold/blink export LESS_TERMCAP_me=$'\e[0m' # reset bold/blink
export LESS_TERMCAP_se=$'\e[0m' # reset reverse video (aka standout) export LESS_TERMCAP_se=$'\e[0m' # reset reverse video, aka standout
export LESS_TERMCAP_ue=$'\e[0m' # reset underline export LESS_TERMCAP_ue=$'\e[0m' # reset underline
export GROFF_NO_SGR=1 # for konsole and gnome-terminal export GROFF_NO_SGR=1 # for konsole and gnome-terminal
fi fi

Loading…
Cancel
Save