Change default pager to less.

This commit is contained in:
David Tomaschik
2021-05-13 12:53:34 -07:00
parent 2b6229acc3
commit 15f5f91e2a

View File

@@ -145,9 +145,8 @@ if test -d ${HOME}/.local/bin ; then
PATH=${PATH}:${HOME}/.local/bin
fi
# Most is nice, if we have it
if command -v most >/dev/null 2>&1; then
export PAGER="most"
if test -z "${PAGER}" && command -v less >/dev/null 2>&1; then
export PAGER="less"
fi
# Load any local settings