diff options
author | Matt Singleton <matt@xcolour.net> | 2024-02-16 10:02:34 -0600 |
---|---|---|
committer | Matt Singleton <matt@xcolour.net> | 2024-02-16 10:02:34 -0600 |
commit | 63517410fa56ab6d251f16af8395c8e99eba9bc3 (patch) | |
tree | 2ca8a78060312f59da371702d34fc9b75acb008b /config | |
parent | 3d085aa870a164b69ba7ee1e897d47810972539d (diff) |
more legible colors for man pages
Diffstat (limited to 'config')
-rw-r--r-- | config/all/dircolors.conf | 1 | ||||
-rw-r--r-- | config/all/zsh/20-appearance.zsh | 7 |
2 files changed, 5 insertions, 3 deletions
diff --git a/config/all/dircolors.conf b/config/all/dircolors.conf index a36f679..f6decec 100644 --- a/config/all/dircolors.conf +++ b/config/all/dircolors.conf @@ -23,6 +23,7 @@ TERM console TERM cygwin TERM dtterm TERM eterm-color +TERM foot-extra TERM gnome TERM gnome-256color TERM jfbterm diff --git a/config/all/zsh/20-appearance.zsh b/config/all/zsh/20-appearance.zsh index 848e7e2..fa3c3cc 100644 --- a/config/all/zsh/20-appearance.zsh +++ b/config/all/zsh/20-appearance.zsh @@ -22,12 +22,13 @@ alias fgrep='fgrep --color=auto' # less 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_md=$'\e[1;36m' # begin bold - bold cyan export LESS_TERMCAP_me=$'\e[0m' # end mode -export LESS_TERMCAP_so=$'\e[1;33;47m' # begin standout mode - bold yellow on light gray ("white") +export LESS_TERMCAP_so=$'\e[33;47m' # begin standout mode - yellow on light gray ("white") export LESS_TERMCAP_se=$'\e[0m' # end standout mode -export LESS_TERMCAP_us=$'\e[4;36m' # begin underline - cyan underline +export LESS_TERMCAP_us=$'\e[4;35m' # begin underline - magenta underline export LESS_TERMCAP_ue=$'\e[0m' # end underline +export MANROFFOPT="-c" # # make a sweet prompt |