my dotfiles
1diff --git a/themes/bira.zsh-theme b/themes/bira.zsh-theme
2index 42a70a0..bd06663 100644
3--- a/themes/bira.zsh-theme
4+++ b/themes/bira.zsh-theme
5@@ -3,30 +3,31 @@ local user_host="%B%(!.%{$fg[red]%}.%{$fg[green]%})%n@%m%{$reset_color%} "
6 local user_symbol='%(!.#.$)'
7 local current_dir="%B%{$fg[blue]%}%~ %{$reset_color%}"
8
9-local vcs_branch='$(git_prompt_info)$(hg_prompt_info)'
10+local vcs_branch='$(git_prompt_info)'
11+local vcs_remote_behind='$(git_commits_behind)$(git_prompt_behind)'
12+local vcs_remote_ahead='$(git_commits_ahead)$(git_prompt_ahead)'
13 local rvm_ruby='$(ruby_prompt_info)'
14 local venv_prompt='$(virtualenv_prompt_info)'
15
16 ZSH_THEME_RVM_PROMPT_OPTIONS="i v g"
17
18-PROMPT="╭─${user_host}${current_dir}${rvm_ruby}${vcs_branch}${venv_prompt}
19+PROMPT="╭─${user_host}${current_dir}${rvm_ruby}${vcs_branch}${vcs_remote_behind}${vcs_remote_ahead}${venv_prompt}
20 ╰─%B${user_symbol}%b "
21 RPROMPT="%B${return_code}%b"
22
23 ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}‹"
24 ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$reset_color%}"
25-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}●%{$fg[yellow]%}"
26+ZSH_THEME_GIT_PROMPT_DIRTY="*%{$fg[yellow]%}"
27 ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[yellow]%}"
28-
29-ZSH_THEME_HG_PROMPT_PREFIX="$ZSH_THEME_GIT_PROMPT_PREFIX"
30-ZSH_THEME_HG_PROMPT_SUFFIX="$ZSH_THEME_GIT_PROMPT_SUFFIX"
31-ZSH_THEME_HG_PROMPT_DIRTY="$ZSH_THEME_GIT_PROMPT_DIRTY"
32-ZSH_THEME_HG_PROMPT_CLEAN="$ZSH_THEME_GIT_PROMPT_CLEAN"
33+ZSH_THEME_GIT_COMMITS_AHEAD_PREFIX="%{$fg[green]%}‹⇡"
34+ZSH_THEME_GIT_COMMITS_AHEAD_SUFFIX="› %{$reset_color%}"
35+ZSH_THEME_GIT_COMMITS_BEHIND_PREFIX="%{$fg[red]%}‹⇣"
36+ZSH_THEME_GIT_COMMITS_BEHIND_SUFFIX="› %{$reset_color%}"
37
38 ZSH_THEME_RUBY_PROMPT_PREFIX="%{$fg[red]%}‹"
39 ZSH_THEME_RUBY_PROMPT_SUFFIX="› %{$reset_color%}"
40
41-ZSH_THEME_VIRTUAL_ENV_PROMPT_PREFIX="%{$fg[green]%}‹"
42+ZSH_THEME_VIRTUAL_ENV_PROMPT_PREFIX="%{$fg[magenta]%}‹"
43 ZSH_THEME_VIRTUAL_ENV_PROMPT_SUFFIX="› %{$reset_color%}"
44 ZSH_THEME_VIRTUALENV_PREFIX="$ZSH_THEME_VIRTUAL_ENV_PROMPT_PREFIX"
45 ZSH_THEME_VIRTUALENV_SUFFIX="$ZSH_THEME_VIRTUAL_ENV_PROMPT_SUFFIX"