fix links because exception capturing is not allowed in exante

add highlighting
add vimpager
This commit is contained in:
arcan1s
2015-10-26 05:29:01 +03:00
parent a44024a09d
commit cc8f5e5759
13 changed files with 4415 additions and 186 deletions

14
zsh/use-vimpager Normal file
View File

@ -0,0 +1,14 @@
# use vimcat instead of cat
# till vimpager doesn't use pipe disable it
#alias cat='vimcat'
# use vimpager instead of less
# find vimpager
if which vimpager &> /dev/null; then
export PAGER="vimpager"
else
export PAGER="$HOME/.zsh/vimpager"
fi
alias less="$PAGER"
alias zless="$PAGER"