Skip to content

Instantly share code, notes, and snippets.

View prophetnoise's full-sized avatar

Rob prophetnoise

  • NYC
View GitHub Profile
@prophetnoise
prophetnoise / .bash_profile
Created March 18, 2018 15:33
Rob's .bash_profile (Mac)
#PostgreSQL
export PATH=$PATH:/Library/PostgreSQL/10/bin
#Simultaneously create and switch to new directory
function mkcd () { mkdir -p "$@" && cd "$@"; }
# Load the default .profile
[[ -s "$HOME/.profile" ]] && source "$HOME/.profile"
#Load RVM into a shell session *as a function*