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