23 lines
558 B
Bash
23 lines
558 B
Bash
#
|
|
# coloured-man
|
|
#
|
|
|
|
# https://wiki.archlinux.org/index.php/Color_output_in_console#man
|
|
|
|
if [[ -v OSTYPE ]]; then
|
|
if [[ "$OSTYPE" == "linux"* ]]; then
|
|
export MANPAGER="less -R --use-color -Dd+r -Du+b"
|
|
elif [[ "$OSTYPE" == "darwin"* ]]; then
|
|
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 "$@"
|
|
}
|
|
fi
|
|
fi
|
|
|
|
# vim: ft=zsh expandtab tabstop=2 shiftwidth=2
|