From c3c6b83313e90405739cebb93fde0c28b0292c86 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Thu, 30 Nov 2017 20:52:10 +0000 Subject: [PATCH] Remove duplicates from MANPATH and INFOPATH too --- zshrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/zshrc b/zshrc index c58d865..9d5e010 100644 --- a/zshrc +++ b/zshrc @@ -63,8 +63,10 @@ bindkey -M vicmd '^V' edit-command-line # Disable tty flow control, allows vim to use 'S' stty -ixon -# Remove duplicates from PATH +# Remove duplicates from environment variables typeset -U PATH +typeset -U MANPATH +typeset -U INFOPATH # Aliases alias grep='grep --color=always'