Evermeet.bgptheme 1.6 KB

1234567891011121314151617181920212223242526272829303132
  1. # This theme for gitprompt.sh is designed for dark color schemes
  2. # It is most suitable for Retina or high resolution displays
  3. override_git_prompt_colors() {
  4. GIT_PROMPT_THEME_NAME="Evermeet"
  5. GIT_PROMPT_PREFIX="" # start of the git info string
  6. GIT_PROMPT_SUFFIX="" # the end of the git info string
  7. GIT_PROMPT_SEPARATOR="|" # separates each item
  8. GIT_PROMPT_BRANCH="${Magenta}" # the git branch that is active in the current directory
  9. GIT_PROMPT_MASTER_BRANCH="${GIT_PROMPT_BRANCH}" # used if the git branch that is active in the current directory is $GIT_PROMPT_MASTER_BRANCHES
  10. GIT_PROMPT_STAGED="${Cyan}●" # the number of staged files/directories
  11. GIT_PROMPT_CONFLICTS="${BoldRed}✖" # the number of files in conflict
  12. GIT_PROMPT_CHANGED="${Cyan}✚" # the number of changed files
  13. GIT_PROMPT_UNTRACKED="${Cyan}…" # the number of untracked files/dirs
  14. GIT_PROMPT_STASHED="${Magenta}⚑" # the number of stashed files/dir
  15. GIT_PROMPT_CLEAN="${BoldGreen}✔" # a colored flag indicating a "clean" repo
  16. GIT_PROMPT_UPSTREAM=" {${Magenta}_UPSTREAM_${ResetColor}}"
  17. GIT_PROMPT_START_USER="[${BoldGreen}\u@\h${ResetColor} ${BoldYellow}\${?}${ResetColor} ${BoldBlue}\w${ResetColor}"
  18. GIT_PROMPT_START_ROOT="[${BoldRed}\u@\h${ResetColor} ${BoldYellow}\${?}${ResetColor} ${BoldBlue}\w${ResetColor}"
  19. GIT_PROMPT_END_USER="]$ "
  20. GIT_PROMPT_END_ROOT="]# "
  21. GIT_PROMPT_SYMBOLS_NO_REMOTE_TRACKING="⭑" # This symbol is written after the branch, if the branch is not tracked
  22. }
  23. reload_git_prompt_colors "Evermeet"