1
0
mirror of https://github.com/akelge/vim synced 2025-08-17 16:08:50 +00:00

Changed all conf file to .zsh extension

This commit is contained in:
2013-01-17 11:15:16 +00:00
parent a6d5778a47
commit d9013ec2da
16 changed files with 3 additions and 2 deletions

20
zsh/zsh.d/30-less.zsh Normal file
View File

@ -0,0 +1,20 @@
#######################################################################################
# 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 :