From fc2492504c9aa9a5e7b94982bb67d3560a28e652 Mon Sep 17 00:00:00 2001 From: finga Date: Wed, 6 Oct 2021 15:28:46 +0200 Subject: [PATCH] Move manpager setting to profile --- .zprofile | 1 + .zshenv | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.zprofile b/.zprofile index d9f6075..2eaf832 100644 --- a/.zprofile +++ b/.zprofile @@ -13,6 +13,7 @@ export EDITOR='em' export VISUAL='em' export BROWSER='qutebrowser' export TERMINAL='urxvtcd' +export MANPAGER="sh -c 'col -bx | bat -l man -p'" # make the password-store use primary instead of clipboard export PASSWORD_STORE_X_SELECTION=primary diff --git a/.zshenv b/.zshenv index fa0bcd5..adc3771 100644 --- a/.zshenv +++ b/.zshenv @@ -69,6 +69,3 @@ alias wttr='curl https://wttr.in/Salzburg' # Developing # alias valgrind='valgrind --track-origins=yes --leak-check=full' - -# use bat for showing manpages (for colors) -export MANPAGER="sh -c 'col -bx | bat -l man -p'"