]> git.rmz.io Git - dotfiles.git/blob - zsh/themes/suvash.zsh-theme
update zshrc
[dotfiles.git] / zsh / themes / suvash.zsh-theme
1 function prompt_char {
2 git branch >/dev/null 2>/dev/null && echo '±' && return
3 hg root >/dev/null 2>/dev/null && echo 'Hg' && return
4 echo '○'
5 }
6
7 function virtualenv_info {
8 [ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') '
9 }
10
11 function collapse_pwd {
12 echo $(pwd | sed -e "s,^$HOME,~,")
13 }
14
15 if which rvm-prompt &> /dev/null; then
16 PROMPT='%{$fg[magenta]%}%n%{$reset_color%} at %{$fg[yellow]%}%m%{$reset_color%} in %{$fg_bold[green]%}${PWD/#$HOME/~}%{$reset_color%}$(git_prompt_info) using %{$reset_color%}%{$fg[red]%}$(~/.rvm/bin/rvm-prompt)%{$reset_color%}
17 $(virtualenv_info)$(prompt_char) '
18 else
19 if which rbenv &> /dev/null; then
20 PROMPT='%{$fg[magenta]%}%n%{$reset_color%} at %{$fg[yellow]%}%m%{$reset_color%} in %{$fg_bold[green]%}${PWD/#$HOME/~}%{$reset_color%}$(git_prompt_info) using %{$reset_color%}%{$fg[red]%}$(rbenv version | sed -e "s/ (set.*$//")%{$reset_color%}
21 $(virtualenv_info)$(prompt_char) '
22 fi
23 fi
24
25
26 ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[magenta]%}"
27 ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
28 ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%}!"
29 ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[green]%}?"
30 ZSH_THEME_GIT_PROMPT_CLEAN=""