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 PATH=${PATH}:${HOME}/.local/bin
fi fi
# Most is nice, if we have it if test -z "${PAGER}" && command -v less >/dev/null 2>&1; then
if command -v most >/dev/null 2>&1; then export PAGER="less"
export PAGER="most"
fi fi
# Load any local settings # Load any local settings