Skip to content

Instantly share code, notes, and snippets.

@bobintornado
Created October 26, 2015 15:56
Show Gist options
  • Save bobintornado/72c83c8cf6fda708b368 to your computer and use it in GitHub Desktop.
Save bobintornado/72c83c8cf6fda708b368 to your computer and use it in GitHub Desktop.
my zshrc
alias editzsh="subl ~/.zshrc"
alias myip="ifconfig | grep "inet " | grep -v 127.0.0.1"
alias tree="find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'"
export PATH=~/.rbenv:$PATH
export RBENV_ROOT=/usr/local/var/rbenv
# export LC_CTYPE="utf-8"
eval "$(rbenv init -)"
ssh-add ~/.ssh/github_rsa # making sure I have this ssh identity added in
rbenv rehash # rehash my rbenv
export GOPATH=$HOME/golangWS
function p() {
git add -A
git commit -a -m "update"
git push
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment