Last active
February 3, 2025 20:42
-
-
Save major0/7f44cc3a680f50e92f75041b24abebd7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
# 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