mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 08:20:09 +00:00
8c95c2b6cb
* Stop loading git plugin * Update completion and git-prompt to v2.10 * Update completion to v2.14
9 lines
221 B
Bash
9 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
|