-
Notifications
You must be signed in to change notification settings - Fork 0
/
.LESS_TERMCAP
40 lines (30 loc) · 1.16 KB
/
.LESS_TERMCAP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# enter blinking mode
export LESS_TERMCAP_mb=$(printf '\e[01;38;5;35m')
#export LESS_TERMCAP_mb=$(tput bold; tput setaf 5)
# enter double-bright mode
export LESS_TERMCAP_md=$(printf '\e[01;38;5;88m')
#export LESS_TERMCAP_md=$(tput bold; tput setaf 4)
# leave standout mode
export LESS_TERMCAP_se=$(printf '\e[0m')
#export LESS_TERMCAP_se=$(tput rmso; tput sgr0)
# enter standout mode
export LESS_TERMCAP_so=$(printf '\e[01;48;5;27m\e[04;38;5;0m')
#export LESS_TERMCAP_so=$(tput bold; tput setaf 3; tput setab 4)
# leave underline mode
export LESS_TERMCAP_ue=$(printf '\e[0m')
#export LESS_TERMCAP_ue=$(tput rmul; tput sgr0)
# enter underline mode
export LESS_TERMCAP_us=$(printf '\e[04;38;5;93m')
#export LESS_TERMCAP_us=$(tput smul; tput bold; tput setaf 15)
# turn off all appearance modes (mb, md, so, us)
export LESS_TERMCAP_me=$(printf '\e[0m')
#export LESS_TERMCAP_me=$(tput sgr0)
# reverse mode
#export LESS_TERMCAP_mr=$(tput rev)
# half bright mode
#export LESS_TERMCAP_mh=$(tput dim)
#export LESS_TERMCAP_ZN=$(tput ssubm)
#export LESS_TERMCAP_ZV=$(tput rsubm)
#export LESS_TERMCAP_ZO=$(tput ssupm)
#export LESS_TERMCAP_ZW=$(tput rsupm)
export GROFF_NO_SGR=1