]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/themes/rkj-repos.zsh-theme
3cb452335d067c3e682f2cd2cb9721d106fe3d8b
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / themes / rkj-repos.zsh-theme
1 # user, host, full path, and time/date on two lines for easier vgrepping
2
3 function hg_prompt_info {
4   if (( $+commands[hg] )) && grep -q "prompt" ~/.hgrc; then
5     hg prompt --angle-brackets "\
6 <hg:%{$fg[magenta]%}<branch>%{$reset_color%}><:%{$fg[magenta]%}<bookmark>%{$reset_color%}>\
7 </%{$fg[yellow]%}<tags|%{$reset_color%}, %{$fg[yellow]%}>%{$reset_color%}>\
8 %{$fg[red]%}<status|modified|unknown><update>%{$reset_color%}<
9 patches: <patches|join( → )|pre_applied(%{$fg[yellow]%})|post_applied(%{$reset_color%})|pre_unapplied(%{$fg_bold[black]%})|post_unapplied(%{$reset_color%})>>" 2>/dev/null
10   fi
11 }
12
13 ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[cyan]%}+"
14 ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[yellow]%}✱"
15 ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%}✗"
16 ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[blue]%}➦"
17 ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[magenta]%}✂"
18 ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[blue]%}✈"
19 ZSH_THEME_GIT_PROMPT_SHA_BEFORE=" %{$fg[blue]%}"
20 ZSH_THEME_GIT_PROMPT_SHA_AFTER="%{$reset_color%}"
21
22 function mygit() {
23   if [[ "$(git config --get oh-my-zsh.hide-status)" != "1" ]]; then
24     ref=$(command git symbolic-ref HEAD 2> /dev/null) || \
25     ref=$(command git rev-parse --short HEAD 2> /dev/null) || return
26     echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$(git_prompt_short_sha)$(git_prompt_status)%{$fg_bold[blue]%}$ZSH_THEME_GIT_PROMPT_SUFFIX "
27   fi
28 }
29
30 function retcode() {}
31
32 # alternate prompt with git & hg
33 PROMPT=$'%{$fg_bold[blue]%}┌─[%{$fg_bold[green]%}%n%b%{$fg[black]%}@%{$fg[cyan]%}%m%{$fg_bold[blue]%}]%{$reset_color%} - %{$fg_bold[blue]%}[%{$fg_bold[default]%}%~%{$fg_bold[blue]%}]%{$reset_color%} - %{$fg_bold[blue]%}[%b%{$fg[yellow]%}'%D{"%Y-%m-%d %I:%M:%S"}%b$'%{$fg_bold[blue]%}]
34 %{$fg_bold[blue]%}└─[%{$fg_bold[magenta]%}%?$(retcode)%{$fg_bold[blue]%}] <$(mygit)$(hg_prompt_info)>%{$reset_color%} '
35 PS2=$' \e[0;34m%}%B>%{\e[0m%}%b '