[zsh] fix manpath

This commit is contained in:
Dmytro Meleshko 2019-06-27 15:33:00 +03:00
parent ff92a1ab7a
commit 443b75f609
2 changed files with 3 additions and 3 deletions

View File

@ -59,6 +59,3 @@ if [[ -f "$rustc" && -x "$rustc" ]] && rust_sysroot="$("$rustc" --print sysroot)
manpath=("$rust_sysroot/share/man" "${manpath[@]}")
fi
unset rustc rust_sysroot
# add colon after MANPATH so that it doesn't overwrite system MANPATH
MANPATH="$MANPATH:"

View File

@ -7,6 +7,9 @@ for script in functions path env plugins aliases palette theme; do
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"