mirror of
				https://github.com/akelge/vim
				synced 2025-11-04 07:24:23 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			729 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			729 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#######################################################################################
 | 
						|
# Setup LESS
 | 
						|
 | 
						|
## make less colourful
 | 
						|
LESS_TERMCAP_mb=$'\E[01;34m'     # begin blinking
 | 
						|
LESS_TERMCAP_md=$'\E[01;36m'     # begin bold
 | 
						|
LESS_TERMCAP_me=$'\E[0m'         # end mode
 | 
						|
LESS_TERMCAP_so=$'\E[01;47;34m'  # begin standout-mode - info box
 | 
						|
LESS_TERMCAP_se=$'\E[0m'         # end standout-mode
 | 
						|
LESS_TERMCAP_us=$'\E[04;32m'     # begin underline
 | 
						|
LESS_TERMCAP_ue=$'\E[0m'         # end underline
 | 
						|
 | 
						|
LESS="-c -x4 -R -MM -PMFile\:?f%f:STDIN. ?BSize\:?B%B:Unk.?B\:?pb%pb\%:Unk.?B\:%i/%m"
 | 
						|
LESSCHARSET=utf-8
 | 
						|
READNULLCMD=/usr/bin/less
 | 
						|
PAGER=/usr/bin/less
 | 
						|
LESSOPEN="|lesspipe.sh %s"; export LESSOPEN
 | 
						|
 | 
						|
export LESS
 | 
						|
#  vim: set ts=4 sw=4 tw=0 ft=zsh : 
 |