mirror of
https://github.com/arcan1s/dotfiles.git
synced 2025-04-24 16:07:17 +00:00
15 lines
294 B
Plaintext
15 lines
294 B
Plaintext
# 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"
|
|
|