mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
[zsh] fix fzf plugin on systems with no predefined $MANPATH
This commit is contained in:
parent
10697a46b2
commit
1360c15912
1 changed files with 3 additions and 3 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue