Skip to content

Instantly share code, notes, and snippets.

@Inityx
Created March 13, 2019 03:32
Show Gist options
  • Save Inityx/a33129cf58c4adbfdfa69f6f01666306 to your computer and use it in GitHub Desktop.
Save Inityx/a33129cf58c4adbfdfa69f6f01666306 to your computer and use it in GitHub Desktop.
man highlighting
man() {
env LESS_TERMCAP_mb=$'\E[01;31m' \
LESS_TERMCAP_md=$'\E[01;38;5;74m' \
LESS_TERMCAP_me=$'\E[0m' \
LESS_TERMCAP_se=$'\E[0m' \
LESS_TERMCAP_so=$'\E[38;5;246m' \
LESS_TERMCAP_ue=$'\E[0m' \
LESS_TERMCAP_us=$'\E[04;38;5;146m' \
man "$@"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment