comparison zsh/exports.zsh @ 184:4c6e4d53f8f6

Add colors to man pages
author zegervdv <zegervdv@me.com>
date Wed, 05 Nov 2014 22:26:37 +0100
parents b18950d832ab
children 4e723feac624
comparison
equal deleted inserted replaced
183:fca0df810041 184:4c6e4d53f8f6
27 export LESS='--ignore-case --raw-control-chars' 27 export LESS='--ignore-case --raw-control-chars'
28 export PAGER='less' 28 export PAGER='less'
29 export EDITOR='vim' 29 export EDITOR='vim'
30 # CTAGS Sorting in VIM/Emacs is better behaved with this in place 30 # CTAGS Sorting in VIM/Emacs is better behaved with this in place
31 export LC_COLLATE=C 31 export LC_COLLATE=C
32
33 # Color Man Pages
34 export LESS_TERMCAP_mb=$(printf "\e[1;31m")
35 export LESS_TERMCAP_md=$(printf "\e[1;31m")
36 export LESS_TERMCAP_me=$(printf "\e[0m")
37 export LESS_TERMCAP_se=$(printf "\e[0m")
38 export LESS_TERMCAP_so=$(printf "\e[1;44;33m")
39 export LESS_TERMCAP_ue=$(printf "\e[0m")
40 export LESS_TERMCAP_us=$(printf "\e[1;32m")
41