strug.zsh-theme 918 B

12345678910111213141516171819202122232425
  1. # terminal coloring
  2. export CLICOLOR=1
  3. export LSCOLORS=dxFxCxDxBxegedabagacad
  4. local git_branch='$(git_prompt_info)%{$reset_color%}$(git_remote_status)'
  5. PROMPT="%{$fg[green]%}╭─%n@%m %{$reset_color%}%{$fg[yellow]%}in %~ %{$reset_color%}${git_branch}
  6. %{$fg[green]%}╰\$ %{$reset_color%}"
  7. ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[yellow]%}on "
  8. ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
  9. ZSH_THEME_GIT_PROMPT_DIRTY="%{$reset_color%}%{$fg[red]%} ✘ %{$reset_color%}"
  10. ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%} ✔ %{$reset_color%}"
  11. ZSH_THEME_GIT_PROMPT_REMOTE_STATUS_DETAILED=true
  12. ZSH_THEME_GIT_PROMPT_REMOTE_STATUS_PREFIX="%{$fg[yellow]%}("
  13. ZSH_THEME_GIT_PROMPT_REMOTE_STATUS_SUFFIX="%{$fg[yellow]%})%{$reset_color%}"
  14. ZSH_THEME_GIT_PROMPT_AHEAD_REMOTE=" +"
  15. ZSH_THEME_GIT_PROMPT_AHEAD_REMOTE_COLOR=%{$fg[green]%}
  16. ZSH_THEME_GIT_PROMPT_BEHIND_REMOTE=" -"
  17. ZSH_THEME_GIT_PROMPT_BEHIND_REMOTE_COLOR=%{$fg[red]%}