rename files to zsh

This commit is contained in:
2016-02-23 01:07:54 +03:00
parent 353b62993a
commit 776e321ded
23 changed files with 30 additions and 30 deletions

14
zsh/vimpager.zsh 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/bin/vimpager"
fi
alias less="$PAGER"
alias zless="$PAGER"