1
0
mirror of https://github.com/vbrandl/dotfiles synced 2024-11-22 16:03:50 +01:00

Colorized manpages

This commit is contained in:
Valentin Brandl 2017-02-11 14:18:48 +01:00
parent 59733e6fdf
commit c2755770d3
Signed by: vbrandl
GPG Key ID: CAD4DA1A789125F9

View File

@ -1,4 +1,4 @@
source ~/.antigen.zsh
source ~/antigen/antigen.zsh
antigen bundle robbyrussell/oh-my-zsh lib/
antigen use oh-my-zsh
@ -72,4 +72,14 @@ alias prm=". $HOME/tools/prm/prm.sh"
# multiple tabs in termite
source /etc/profile.d/vte.sh
# copied from http://www.tuxarena.com/2012/04/tutorial-colored-man-pages-how-it-works/
# maybe improve later
export LESS_TERMCAP_mb=$(printf '\e[01;31m') # enter blinking mode - red
export LESS_TERMCAP_md=$(printf '\e[01;35m') # enter double-bright mode - bold, magenta
export LESS_TERMCAP_me=$(printf '\e[0m') # turn off all appearance modes (mb, md, so, us)
export LESS_TERMCAP_se=$(printf '\e[0m') # leave standout mode
export LESS_TERMCAP_so=$(printf '\e[01;33m') # enter standout mode - yellow
export LESS_TERMCAP_ue=$(printf '\e[0m') # leave underline mode
export LESS_TERMCAP_us=$(printf '\e[04;36m') # enter underline mode - cyan
# vim: set filetype=zsh ts=4 sw=4 tw=0 et :