Browse Source

Source correct module's `init.zsh`

Now that modules can be located in different directories, the `init.zsh` should be loaded from the `$module_location` and not `$ZPREZTODIR/modules/$pmodule`
master
Denys Digtiar 7 years ago committed by Kaleb Elwert
parent
commit
1d74bde790
  1. 4
      init.zsh

4
init.zsh

@ -123,8 +123,8 @@ function pmodload {
done done
} }
if [[ -s "$ZPREZTODIR/modules/$pmodule/init.zsh" ]]; then if [[ -s "${pmodule_location}/init.zsh" ]]; then
source "$ZPREZTODIR/modules/$pmodule/init.zsh" source "${pmodule_location}/init.zsh"
fi fi
if (( $? == 0 )); then if (( $? == 0 )); then

Loading…
Cancel
Save