From ec89482ea89ccdf3173f50925abcc5ecf5e6a90b Mon Sep 17 00:00:00 2001 From: Darren Austin Date: Wed, 24 May 2017 07:39:45 +0100 Subject: [PATCH] Added ~/.local/share/man to Linux MANPATH --- .bash_profile | 1 + 1 file changed, 1 insertion(+) diff --git a/.bash_profile b/.bash_profile index 7e442b5..b476ce7 100644 --- a/.bash_profile +++ b/.bash_profile @@ -22,6 +22,7 @@ export VISUAL="$EDITOR" _PLATFORM="$(uname -s)" if [ "$_PLATFORM" = "Linux" ]; then export I_WANT_A_BROKEN_PS=1 + export MANPATH="~/.local/share/man:$MANPATH" hash dircolors >/dev/null 2>&1 && eval "$(dircolors -b ~/.dir_colors)" elif [ "$_PLATFORM" = "Darwin" ]; then export LSCOLORS="ExGxdxdxCxDxDxbcacbeae"