]> git.rmz.io Git - dotfiles.git/blob - zsh/themes/gallois.zsh-theme
cleanup custom folder
[dotfiles.git] / zsh / themes / gallois.zsh-theme
1 ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[green]%}["
2 ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$reset_color%}"
3 ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}*%{$reset_color%}"
4 ZSH_THEME_GIT_PROMPT_CLEAN=""
5
6 #Customized git status, oh-my-zsh currently does not allow render dirty status before branch
7 git_custom_status() {
8 local cb=$(current_branch)
9 if [ -n "$cb" ]; then
10 echo "$(parse_git_dirty)$ZSH_THEME_GIT_PROMPT_PREFIX$(current_branch)$ZSH_THEME_GIT_PROMPT_SUFFIX"
11 fi
12 }
13
14 #RVM and git settings
15 if [[ -s ~/.rvm/scripts/rvm ]] ; then
16 RPS1='$(git_custom_status)%{$fg[red]%}[`~/.rvm/bin/rvm-prompt`]%{$reset_color%} $EPS1'
17 else
18 if which rbenv &> /dev/null; then
19 RPS1='$(git_custom_status)%{$fg[red]%}[`rbenv version | sed -e "s/ (set.*$//"`]%{$reset_color%} $EPS1'
20 else
21 RPS1='$(git_custom_status) $EPS1'
22 fi
23 fi
24
25 PROMPT='%{$fg[cyan]%}[%~% ]%(?.%{$fg[green]%}.%{$fg[red]%})%B$%b '