-
Notifications
You must be signed in to change notification settings - Fork 967
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# This theme for gitprompt.sh is designed for dark color schemes | ||
# It is most suitable for Retina or high resolution displays | ||
|
||
override_git_prompt_colors() { | ||
GIT_PROMPT_THEME_NAME="Evermeet_return_prompt" | ||
|
||
GIT_PROMPT_PREFIX="" # start of the git info string | ||
GIT_PROMPT_SUFFIX="" # the end of the git info string | ||
GIT_PROMPT_SEPARATOR=" " # separates each item | ||
|
||
GIT_PROMPT_BRANCH="${Magenta}🪵" # the git branch that is active in the current directory | ||
GIT_PROMPT_MASTER_BRANCH="${GIT_PROMPT_BRANCH}" # used if the git branch that is active in the current directory is $GIT_PROMPT_MASTER_BRANCHES | ||
GIT_PROMPT_STAGED="${Cyan}●" # the number of staged files/directories | ||
GIT_PROMPT_CONFLICTS="${BoldRed}✖" # the number of files in conflict | ||
GIT_PROMPT_CHANGED="${Cyan}✚" # the number of changed files | ||
|
||
GIT_PROMPT_UNTRACKED="${Cyan}…" # the number of untracked files/dirs | ||
GIT_PROMPT_STASHED="${Magenta}⚑" # the number of stashed files/dir | ||
GIT_PROMPT_CLEAN="${BoldGreen}✔" # a colored flag indicating a "clean" repo | ||
|
||
GIT_PROMPT_STAGED="${Cyan}👆" # the number of staged files/directories | ||
GIT_PROMPT_CONFLICTS="${BoldRed}😨" # the number of files in conflict | ||
GIT_PROMPT_CHANGED="${Cyan}⌛" # the number of changed files | ||
|
||
GIT_PROMPT_UNTRACKED="${Cyan}🤔" # the number of untracked files/dirs | ||
GIT_PROMPT_STASHED="${Magenta}📌" # the number of stashed files/dir | ||
GIT_PROMPT_CLEAN="${BoldGreen}👍" # a colored flag indicating a "clean" repo | ||
|
||
GIT_PROMPT_SYMBOLS_BEHIND="👇" | ||
|
||
GIT_PROMPT_UPSTREAM=" {${Magenta}_UPSTREAM_${ResetColor}}" | ||
|
||
GIT_PROMPT_START_USER="┌──[${White}\$(date +%H:%M)${ResetColor} ${BoldGreen}\u${ResetColor} ${BoldYellow}\${?}${ResetColor} ${BoldBlue}\w${ResetColor}" | ||
GIT_PROMPT_START_ROOT="┌──[${BoldRed}\u${ResetColor} ${BoldYellow}\${?}${ResetColor} ${BoldBlue}\w${ResetColor}" | ||
GIT_PROMPT_END_USER="]\n└─$ " | ||
GIT_PROMPT_END_ROOT="]\n└─# " | ||
|
||
GIT_PROMPT_SYMBOLS_NO_REMOTE_TRACKING="⭑" # This symbol is written after the branch, if the branch is not tracked | ||
} | ||
|
||
reload_git_prompt_colors "Evermeet_return_prompt" |