mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
[zsh] fix manpath
This commit is contained in:
parent
ff92a1ab7a
commit
443b75f609
2 changed files with 3 additions and 3 deletions
|
@ -59,6 +59,3 @@ if [[ -f "$rustc" && -x "$rustc" ]] && rust_sysroot="$("$rustc" --print sysroot)
|
||||||
manpath=("$rust_sysroot/share/man" "${manpath[@]}")
|
manpath=("$rust_sysroot/share/man" "${manpath[@]}")
|
||||||
fi
|
fi
|
||||||
unset rustc rust_sysroot
|
unset rustc rust_sysroot
|
||||||
|
|
||||||
# add colon after MANPATH so that it doesn't overwrite system MANPATH
|
|
||||||
MANPATH="$MANPATH:"
|
|
||||||
|
|
|
@ -7,6 +7,9 @@ for script in functions path env plugins aliases palette theme; do
|
||||||
source_if_exists "$ZSH_DOTFILES/custom/$script.zsh"
|
source_if_exists "$ZSH_DOTFILES/custom/$script.zsh"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# add colon after MANPATH so that it doesn't overwrite system MANPATH
|
||||||
|
MANPATH="$MANPATH:"
|
||||||
|
|
||||||
command_exists rbenv && eval "$(rbenv init -)"
|
command_exists rbenv && eval "$(rbenv init -)"
|
||||||
|
|
||||||
BASE16_SHELL_profile_helper="$BASE16_SHELL/profile_helper.sh"
|
BASE16_SHELL_profile_helper="$BASE16_SHELL/profile_helper.sh"
|
||||||
|
|
Loading…
Reference in a new issue