Weeks worth of tweaks

This commit is contained in:
Ian Keane 2020-02-22 17:55:45 -05:00
parent 97c89facd0
commit babcc9e44b
8 changed files with 37 additions and 14 deletions

View file

@ -71,3 +71,15 @@ bindkey -s '^o' 'lfcd\n' # zsh
# Load zsh-syntax-highlighting; should be last.
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh 2>/dev/null
# man page colors
man() {
LESS_TERMCAP_md=$'\e[01;31m' \
LESS_TERMCAP_me=$'\e[0m' \
LESS_TERMCAP_se=$'\e[0m' \
LESS_TERMCAP_so=$'\e[01;44;33m' \
LESS_TERMCAP_ue=$'\e[0m' \
LESS_TERMCAP_us=$'\e[01;32m' \
command man "$@"
}