blob: 75591fc0d9c327885dd39da9c711b7822f759058 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#! /usr/bin/env zsh
dot="$(cd "$(dirname "$0")"; pwd)"
source "$dot/git-base.sh"
if is_repo; then
autoload colors && colors
git_prefix="%{$fg_bold[black]%}git:(%{$reset_color%}"
git_suffix="%{$fg_bold[black]%})%{$reset_color%}"
printf '%s' " $git_prefix$(zsh_color_remote_commits;branch_name;zsh_color_local_commits)$git_suffix$(zsh_color_changes_status)"
fi
|