[zsh] dropped man page colorization

Didn't even seem like it was working at this point. Been living without it so no
reason to worry about it
This commit is contained in:
Josh Sherman 2017-12-23 17:40:24 -06:00
parent d929676725
commit 38cde1c860
No known key found for this signature in database
GPG key ID: 55B058A80530EF22

12
zshrc
View file

@ -119,18 +119,6 @@ function cd {
builtin cd "$@" && ls -F
}
# Colorful man pages
man() {
env \
LESS_TERMCAP_md=$'\e[1;36m' \
LESS_TERMCAP_me=$'\e[0m' \
LESS_TERMCAP_se=$'\e[0m' \
LESS_TERMCAP_so=$'\e[1;40;92m' \
LESS_TERMCAP_ue=$'\e[0m' \
LESS_TERMCAP_us=$'\e[1;32m' \
man "$@"
}
function username() {
if [[ `whoami` != 'josh' ]]; then
echo "%F{248}%n%F{reset}"