summaryrefslogtreecommitdiffstats
path: root/bashrc/common/pager.sh
blob: a92031ea9c19207cac720373df3367ad4f77106f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# pager options

# use less by default ...
if hash less; then
	export PAGER=less
	export LESS="-R --ignore-case --long-prompt"
fi

# but user most, if available
if hash most; then
	export PAGER=most
	export MANPAGER=most
fi