diff --git a/modules/git/functions/git-info b/modules/git/functions/git-info index 07ebf80..6c7a1f6 100644 --- a/modules/git/functions/git-info +++ b/modules/git/functions/git-info @@ -64,9 +64,6 @@ # 'rprompt' '' # -# Load dependencies. -pmodload 'helper' - # Gets the Git special action (am, bisect, cherry, merge, rebase). # Borrowed from vcs_info and edited. function _git-action { diff --git a/modules/git/init.zsh b/modules/git/init.zsh index 81a7b73..3a618f2 100644 --- a/modules/git/init.zsh +++ b/modules/git/init.zsh @@ -10,6 +10,9 @@ if (( ! $+commands[git] )); then return 1 fi +# Load dependencies. +pmodload 'helper' + # Source module files. source "${0:h}/alias.zsh"