Last active
March 10, 2017 08:00
-
-
Save GuyHarwood/7f14cf079a5ebde4de06a9ce5ffcd994 to your computer and use it in GitHub Desktop.
Current Bash Profile
This file contains hidden or 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
git_branch='`git rev-parse --abbrev-ref HEAD 2> /dev/null | sed s/^/\ \|\ /`' | |
#emojis=(๐ธ ๐จ ๐ป ๐ฎ ๐ต ๐ผ ๐ง ๐ ๐ข ๐ ๐ ๐ณ ๐ฌ ๐ฅ ) | |
#emoji='`echo ${emojis[$RANDOM % 22]}`' | |
#PS1="\[$(tput bold)\]\[\033[38;5;39m\]\w\[$(tput sgr0)\] (\W$git_branch) ๐ ๐จ > \[\e[0m\]" | |
export PS1="\[$(tput bold)\]\[\033[38;5;39m\]\w\[$(tput sgr0)\] (\W$git_branch)> \[\e[0m\]" | |
#PS1="\[$(tput bold)\]\[\033[38;5;39m\]\w\[$(tput sgr0)\] (\W$git_branch) ๐ ๐จ >" | |
alias ls='ls -GFhla' | |
#load nvm | |
export NVM_DIR="/Users/guy/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment