Created
July 23, 2014 10:25
-
-
Save r--w/1f29c353ca21fb2d6285 to your computer and use it in GitHub Desktop.
osx - .profile
This file contains hidden or 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 ll='ls -alFthr' | |
export PS1='\[\033[0;35m\]\u\[\033[0;32m\]\w\[\033[0m\]$\[\033[0m\] ' | |
export PATH=/opt/local/bin:/opt/local/sbin:$PATH | |
export SVN_EDITOR="/usr/bin/vi" | |
export GOROOT=$HOME/Programs/go | |
export PATH=$PATH:$GOROOT/bin | |
export GOPATH=$HOME/Programs/gopath | |
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin | |
export GOMAXPROCS=6 | |
export CGO_LDFLAGS="-L/Users/rww/lib/" | |
if [ -f /opt/local/etc/profile.d/bash_completion.sh ]; then | |
. /opt/local/etc/profile.d/bash_completion.sh | |
fi | |
export CFLAGS=-Qunused-arguments | |
export CPPFLAGS=-Qunused-arguments | |
export HISTFILESIZE=5000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment