18 lines
285 B
Bash
18 lines
285 B
Bash
test -n "$PROMPT_COMMAND" && unset PROMPT_COMMAND
|
|
|
|
PATH="$HOME/bin:$PATH"
|
|
export PATH
|
|
|
|
export PS1="\u@\h:\w\$ "
|
|
|
|
if test -t 0
|
|
then
|
|
source ~/.bash_aliases
|
|
source ~/.bash_functions
|
|
fi
|
|
|
|
# vim:filetype=sh
|
|
|
|
### Added by the Heroku Toolbelt
|
|
export PATH="/usr/local/heroku/bin:$PATH"
|