|
|
|
|
|
|
130
|
parse_git_branch() {
|
130
|
parse_git_branch() {
|
|
131
|
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
|
131
|
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
|
|
132
|
}
|
132
|
}
|
|
133
|
-export PS1="\u@\h \[\033[32m\]\w\[\033[33m\]\$(parse_git_branch)\[\033[00m\] $ "
|
|
|
|
|
|
133
|
+
|
|
|
|
134
|
+export PS1="\u@\h \[\033[32m\]\w\[\033[33m\]\$(parse_git_branch)\[\033[00m\] \n > "
|
|
134
|
|
135
|
|
|
135
|
export NVM_DIR="$HOME/.nvm"
|
136
|
export NVM_DIR="$HOME/.nvm"
|
|
136
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
137
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|