diff options
author | Michele Bologna <michele.bologna@gmail.com> | 2015-09-23 11:14:14 +0200 |
---|---|---|
committer | Michele Bologna <michele.bologna@gmail.com> | 2015-09-23 11:14:14 +0200 |
commit | 12e99b5334c547c8e8fc1bdcacc88347386eb743 (patch) | |
tree | 18362024bfae30609bedcf29e49756e832778aaa /lib/git.zsh | |
parent | 5323954c98ca41b47f0d9d40797932d4a6cd980f (diff) | |
download | zsh-12e99b5334c547c8e8fc1bdcacc88347386eb743.tar.gz zsh-12e99b5334c547c8e8fc1bdcacc88347386eb743.tar.bz2 zsh-12e99b5334c547c8e8fc1bdcacc88347386eb743.zip |
fix indentation
Diffstat (limited to 'lib/git.zsh')
-rw-r--r-- | lib/git.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git.zsh b/lib/git.zsh index 15cd364a0..1e203c7c6 100644 --- a/lib/git.zsh +++ b/lib/git.zsh @@ -38,7 +38,7 @@ git_remote_status() { if [ $ahead -eq 0 ] && [ $behind -eq 0 ] then - git_remote_status="$ZSH_THEME_GIT_PROMPT_EQUAL_REMOTE" + git_remote_status="$ZSH_THEME_GIT_PROMPT_EQUAL_REMOTE" elif [ $ahead -gt 0 ] && [ $behind -eq 0 ] then git_remote_status="$ZSH_THEME_GIT_PROMPT_AHEAD_REMOTE" |