Guest User

Untitled

a guest
Dec 10th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. #
  2. # _ _
  3. # | | (_) _
  4. # ___ _ _| |__ ___ ___ _ _| |_ ___
  5. # /___) | | | _ \ / _ \ /___) (_ _) _ \
  6. # |___ | |_| | |_) ) |_| |___ | | | || |_| |
  7. # (___/|____/|____/ \___/(___/|_| \__)___/
  8. #
  9. #
  10.  
  11. local path_status="%{$fg[cyan]%}%c%{$reset_color%}"
  12. local command_separator=" %(!.%{$fg_bold[red]%}#.%{$fg_bold[green]%}>)%{$reset_color%} "
  13. local return_status="%{$fg[red]%}%(?.. <>)%{$reset_color%}"
  14.  
  15. ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}:"
  16. ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
  17. ZSH_THEME_GIT_PROMPT_DIRTY=""
  18. ZSH_THEME_GIT_PROMPT_CLEAN=""
  19.  
  20. PROMPT='${path_status}$(git_prompt_info)$(git_prompt_status)${return_status}${command_separator}'
  21.  
  22. ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%} +"
  23. ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[blue]%} *"
  24. ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} -"
  25. ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[magenta]%} >"
  26. ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[yellow]%} #"
  27. ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ^"
Add Comment
Please, Sign In to add comment