From 9edfa470dd412b8a315e884012dffd9dfbc22a6c Mon Sep 17 00:00:00 2001 From: Dmytro Meleshko Date: Sun, 28 Jul 2019 17:17:30 +0300 Subject: [PATCH] [zsh] revert unnecessary manpath fix --- zsh/zshrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zsh/zshrc b/zsh/zshrc index 48bc82c..2dfd016 100755 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -2,14 +2,14 @@ ZSH_DOTFILES="${0:h}" -# add colon after MANPATH so that it doesn't overwrite system MANPATH -export MANPATH="$MANPATH:" - for script in functions path env plugins aliases palette theme; do source "$ZSH_DOTFILES/$script.zsh" source_if_exists "$ZSH_DOTFILES/custom/$script.zsh" done +# add colon after MANPATH so that it doesn't overwrite system MANPATH +MANPATH="$MANPATH:" + command_exists rbenv && eval "$(rbenv init -)" BASE16_SHELL_profile_helper="$BASE16_SHELL/profile_helper.sh"