]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/themes/strug.zsh-theme
89b56b008672b996a25f69eff25337eb5fc1693a
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / themes / strug.zsh-theme
1 # terminal coloring
2 export CLICOLOR=1
3 export LSCOLORS=dxFxCxDxBxegedabagacad
4
5 local git_branch='$(git_prompt_info)%{$reset_color%}$(git_remote_status)'
6
7 PROMPT="%{$fg[green]%}╭─%n@%m %{$reset_color%}%{$fg[yellow]%}in %~ %{$reset_color%}${git_branch}
8 %{$fg[green]%}╰\$ %{$reset_color%}"
9
10 ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[yellow]%}on "
11 ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
12
13 ZSH_THEME_GIT_PROMPT_DIRTY="%{$reset_color%}%{$fg[red]%} ✘ %{$reset_color%}"
14 ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%} ✔ %{$reset_color%}"
15
16 ZSH_THEME_GIT_PROMPT_REMOTE_STATUS_DETAILED=true
17 ZSH_THEME_GIT_PROMPT_REMOTE_STATUS_PREFIX="%{$fg[yellow]%}("
18 ZSH_THEME_GIT_PROMPT_REMOTE_STATUS_SUFFIX="%{$fg[yellow]%})%{$reset_color%}"
19
20 ZSH_THEME_GIT_PROMPT_AHEAD_REMOTE=" +"
21 ZSH_THEME_GIT_PROMPT_AHEAD_REMOTE_COLOR=%{$fg[green]%}
22
23 ZSH_THEME_GIT_PROMPT_BEHIND_REMOTE=" -"
24 ZSH_THEME_GIT_PROMPT_BEHIND_REMOTE_COLOR=%{$fg[red]%}
25