diff options
author | Matt Singleton <matthew.j.singleton@gmail.com> | 2011-02-18 23:49:32 -0500 |
---|---|---|
committer | Matt Singleton <matthew.j.singleton@gmail.com> | 2011-02-18 23:49:32 -0500 |
commit | 894c02322b573c57c684ba71cb81ed792ebf55d1 (patch) | |
tree | 07eec5bc921f2f47d2bbe9923f25c5de28eee1f8 | |
parent | 73d5178d105afd5009f217ca551f791837ae7adb (diff) |
setting less standout color
-rw-r--r-- | zsh/appearance.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zsh/appearance.zsh b/zsh/appearance.zsh index f360985..d5d4a65 100644 --- a/zsh/appearance.zsh +++ b/zsh/appearance.zsh @@ -13,7 +13,7 @@ export GREP_COLOR='1;32' export LESS_TERMCAP_mb=$'\e[0;31m' # begin blinking - red export LESS_TERMCAP_md=$'\e[0;34m' # begin bold - blue export LESS_TERMCAP_me=$'\e[0m' # end mode -export LESS_TERMCAP_so=$'\e[38;5;246m' # begin standout mode - info box +export LESS_TERMCAP_so=$'\e[30;46m' # begin standout mode - black on cyan export LESS_TERMCAP_se=$'\e[0m' # end standout mode export LESS_TERMCAP_us=$'\e[4;33m' # begin underline - yellow underline export LESS_TERMCAP_ue=$'\e[0m' # end underline |