Last active
November 6, 2016 04:31
-
-
Save apas/f0fd9cede5da742c47572700bdc01ac6 to your computer and use it in GitHub Desktop.
minimal and elegant git aware shell prompt
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
# download jimeh's git-aware-prompt | |
# https://github.com/jimeh/git-aware-prompt | |
export GITAWAREPROMPT=~/.gap/git-aware-prompt | |
source $GITAWAREPROMPT/main.sh | |
# change your PS1 accordingly | |
# that'd normally print: `~ $` | |
# and in a git repo w/o changes: `/path/to/repo(branch-name) $` | |
# in git w/ changes: `/path/to/repo(branch-name)* $` | |
# (the asterisk is in red) | |
export PS1="\[\e[36;1m\]\w\[$txtcyn\]\$git_branch\[$txtred\]\$git_dirty\[$txtrst\] \$ " |
Author
apas
commented
Nov 5, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment