Created
March 6, 2017 15:56
-
-
Save diorahman/e4b96bc39b3858e0e43133d9ea901949 to your computer and use it in GitHub Desktop.
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
export NVM_DIR="/home/dio/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm | |
function git_branch { | |
git branch --no-color 2>/dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\ \(\1\)/' | |
} | |
PS1=" λ \W\$(git_branch): " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment