1
0
Fork 0

more color tweaks for bash prompt

This commit is contained in:
Von Random 2016-12-22 12:42:21 +03:00
parent 6e4f7a36d6
commit 4a31a22206
2 changed files with 17 additions and 15 deletions

View file

@ -28,14 +28,14 @@ enable_git_prompt()
GIT_PROMPT_SEPARATOR=" "
GIT_PROMPT_START="[ ${git_prompt_username}${HOSTNAME}:${pbold}\w${preset} ]"
GIT_PROMPT_THEME_NAME="Custom"
GIT_PROMPT_UNTRACKED="${pncyan}u"
GIT_PROMPT_CHANGED="${pnblue}+"
GIT_PROMPT_STAGED="${pnyellow}s"
GIT_PROMPT_CONFLICTS="${pnred}x"
GIT_PROMPT_STASHED="${pbmagenta}→"
GIT_PROMPT_CLEAN="${pngreen}."
GIT_PROMPT_UNTRACKED="${pcyan}u"
GIT_PROMPT_CHANGED="${pblue}+"
GIT_PROMPT_STAGED="${pyellow}s"
GIT_PROMPT_CONFLICTS="${pred}x"
GIT_PROMPT_STASHED="${ppurple}→"
GIT_PROMPT_CLEAN="${pgreen}."
GIT_PROMPT_END_USER="\n${pbold}>${preset} "
GIT_PROMPT_END_ROOT="\n${pnred}>${preset} "
GIT_PROMPT_END_ROOT="\n${pred}>${preset} "
. "${git_prompt_path}"
fi
}