From 7770ba056ea69fb5ec98dfaf40c8e8b8174d43a5 Mon Sep 17 00:00:00 2001 From: Mark Vainomaa Date: Sun, 29 Jan 2017 21:49:43 +0200 Subject: [PATCH] Set MANPAGER to less --- main.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/main.zsh b/main.zsh index 469d203..59663a1 100644 --- a/main.zsh +++ b/main.zsh @@ -52,6 +52,7 @@ fi export EDITOR=$(if [ ! -z "$(command -v nvim)" ]; then echo "nvim"; else echo "vim"; fi) export VISUAL=${EDITOR} export PAGER=less +export MANPAGER=less # less options export LESS="-r"