forked from extern/ohmyzsh
8c95c2b6cb
* Stop loading git plugin * Update completion and git-prompt to v2.10 * Update completion to v2.14
10 lines
221 B
Bash
10 lines
221 B
Bash
dir="${0:A:h}"
|
|
source "$dir/git-prompt.sh"
|
|
|
|
function git_prompt_info() {
|
|
dirty="$(parse_git_dirty)"
|
|
__git_ps1 "${ZSH_THEME_GIT_PROMPT_PREFIX//\%/%%}%s${dirty//\%/%%}${ZSH_THEME_GIT_PROMPT_SUFFIX//\%/%%}"
|
|
}
|
|
|
|
unset dir
|