my zshrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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