From 143e6e1e74e5470efd4a1105096a51d8e5fe8656 Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Tue, 30 Jan 2018 21:21:46 -0800 Subject: [PATCH] Use most if available. --- dotfiles/zshrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dotfiles/zshrc b/dotfiles/zshrc index 1d5f4b6..cd4c7f1 100755 --- a/dotfiles/zshrc +++ b/dotfiles/zshrc @@ -64,6 +64,11 @@ if [ -x /usr/bin/ack-grep ] ; then alias ack='/usr/bin/ack-grep' fi +# Most is nice, if we have it +if command -v most >/dev/null 2>&1; then + export PAGER="most" +fi + # Load any local settings if [ -e $HOME/.zshrc.local ] ; then source $HOME/.zshrc.local ; fi