dotfiles/bashrc

21 lines
381 B
Bash
Raw Normal View History

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
2014-10-06 18:34:11 +00:00
### Added by the Heroku Toolbelt
export PATH="/usr/local/heroku/bin:$PATH"
2015-02-03 16:20:51 +00:00
# added by travis gem
[ -f /Users/me/.travis/travis.sh ] && source /Users/me/.travis/travis.sh