2021-12-18 20:53:49 +00:00
|
|
|
# Handle $0 according to the standard:
|
2021-12-28 13:16:54 +00:00
|
|
|
# https://zdharma-continuum.github.io/Zsh-100-Commits-Club/Zsh-Plugin-Standard.html
|
2024-03-07 08:47:15 +00:00
|
|
|
0="${ZERO:-${${0:#$ZSH_ARGZERO}:-${(%):-%N}}}"
|
2021-12-18 20:53:49 +00:00
|
|
|
0="${${(M)0:#/*}:-$PWD/$0}"
|
|
|
|
|
2019-06-07 15:57:47 +00:00
|
|
|
source "${0:A:h}/git-prompt.sh"
|
2012-11-22 16:38:39 +00:00
|
|
|
|
|
|
|
function git_prompt_info() {
|
2012-11-29 14:54:17 +00:00
|
|
|
dirty="$(parse_git_dirty)"
|
|
|
|
__git_ps1 "${ZSH_THEME_GIT_PROMPT_PREFIX//\%/%%}%s${dirty//\%/%%}${ZSH_THEME_GIT_PROMPT_SUFFIX//\%/%%}"
|
2012-11-22 16:38:39 +00:00
|
|
|
}
|