Skip to content

Instantly share code, notes, and snippets.

@major0
Last active February 3, 2025 20:42
Show Gist options
  • Save major0/7f44cc3a680f50e92f75041b24abebd7 to your computer and use it in GitHub Desktop.
Save major0/7f44cc3a680f50e92f75041b24abebd7 to your computer and use it in GitHub Desktop.
##
# Colorized man pages.
# simply add to .bashrc/.profile/.zprofile/etc.
man() {
env \
LESS_TERMCAP_mb="$(printf '\e[1;31m')" \
LESS_TERMCAP_md="$(printf '\e[0;36m')" \
LESS_TERMCAP_me="$(printf '\e[0m')" \
LESS_TERMCAP_se="$(printf '\e[0m')" \
LESS_TERMCAP_so="$(printf '\e[01;44;33m')" \
LESS_TERMCAP_ue="$(printf '\e[0m')" \
LESS_TERMCAP_us="$(printf '\e[01;30m')" \
GROFF_NO_SGR=1 \
man "$@"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment