15 lines
348 B
Bash
15 lines
348 B
Bash
export EDITOR=vim
|
|
|
|
# generated by ./bin/generate-bash-prompt
|
|
# export PS1='[\[\e[0;35m\]\u@\h\[\e[0m\] \[\e[1;34m\]\W\[\e[0m\]]\$ '
|
|
export PS1='[\[\e[0;35m\]\u@\h\[\e[0m\] \[\e[1;34m\]\W\[\e[0;32m\]$(__git_ps1 " %s")\[\e[0m\]]\$ '
|
|
|
|
if [ -f ~/.bashrc ]; then
|
|
source ~/.bashrc
|
|
fi
|
|
|
|
LOCALS=~/.bashrc_local
|
|
if [ -f $LOCALS ]; then
|
|
source $LOCALS
|
|
fi
|