]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/themes/intheloop.zsh-theme
7a98db27ad7da75f173e900f18fbd79296399a79
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / themes / intheloop.zsh-theme
1 # A multiline prompt with username, hostname, full path, return status, git branch, git dirty status, git remote status
2
3 local return_status="%{$fg[red]%}%(?..⏎)%{$reset_color%}"
4
5 local host_color="green"
6 if [ -n "$SSH_CLIENT" ]; then
7   local host_color="red"
8 fi
9
10 PROMPT='
11 %{$fg_bold[grey]%}[%{$reset_color%}%{$fg_bold[${host_color}]%}%n@%m%{$reset_color%}%{$fg_bold[grey]%}]%{$reset_color%} %{$fg_bold[blue]%}%10c%{$reset_color%} $(git_prompt_info) $(git_remote_status)
12 %{$fg_bold[cyan]%}❯%{$reset_color%} '
13
14
15 RPROMPT='${return_status}%{$reset_color%}'
16
17 ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[grey]%}(%{$fg[red]%}"
18 ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
19 ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[grey]%}) %{$fg[yellow]%}⚡%{$reset_color%}"
20 ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[grey]%})"
21 ZSH_THEME_GIT_PROMPT_BEHIND_REMOTE="%{$fg_bold[magenta]%}↓%{$reset_color%}"
22 ZSH_THEME_GIT_PROMPT_AHEAD_REMOTE="%{$fg_bold[magenta]%}↑%{$reset_color%}"
23 ZSH_THEME_GIT_PROMPT_DIVERGED_REMOTE="%{$fg_bold[magenta]%}↕%{$reset_color%}"