dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | README | LICENSE

commit ee29aff2d630588f4880680c3db5628b05a2d203 (patch)
parent e707de90bf7e280caa058f7a0e7c55eb356a0773
Author: Alex Karle <alex@alexkarle.com>
Date:   Mon, 10 Jan 2022 23:12:08 -0500

sh: Add PAGER export

Some programs (mshow(1) of mblaze(1)) take the absence of a PAGER
to mean that it's an environment that shouldn't use a pager.

Part of me wants to love NOCOLOR and all that... but for email threads
it's really nice seeing the colored replies!

Diffstat:
M.shrc | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/.shrc b/.shrc @@ -5,5 +5,6 @@ HISTSIZE=100000 export EDITOR=${EDITOR:-ed} export VISUAL=${VISUAL:-vi} +export PAGER=${PAGER:-less} alias ll='ls -lahF'