diff --git a/bullet-train.zsh-theme b/bullet-train.zsh-theme index d2f9f3c..8cd577c 100644 --- a/bullet-train.zsh-theme +++ b/bullet-train.zsh-theme @@ -138,7 +138,11 @@ prompt_git() { if $(git rev-parse --is-inside-work-tree >/dev/null 2>&1); then prompt_segment $BULLETTRAIN_GIT_BG $BULLETTRAIN_GIT_FG - echo -n $(git_prompt_info) + if [[ $BULLETTRAIN_GIT_STATUS == true ]] then + echo -n $(git_prompt_info)$(git_prompt_status) + else + echo -n $(git_prompt_info) + fi fi }