aboutsummaryrefslogtreecommitdiff
path: root/sh/profile.d/pager.sh
blob: a74e6aa1020a75db9b416fca1fcf3abb63e8d1c0 (plain) (blame)
1
2
3
4
5
6
7
# If we don't have less(1), we'll just use whatever pager the application or
# system deems fit
command -v less >/dev/null || return

# Use less(1) as my PAGER
PAGER=less
export PAGER