Last active
February 22, 2016 21:51
-
-
Save kcmerrill/77ee2865dc9b39578356 to your computer and use it in GitHub Desktop.
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
source ~/.bash_prompt | |
# Start tmux | |
if [[ -t 1 && -z ${TMUX} ]]; then | |
tmux attach > /dev/null || tmux new -s "TMUX" | |
fi | |
export GOROOT=/usr/local/go | |
export GOPATH=/code/go | |
export PATH=/usr/local/go/bin:/code/go/bin:/code/HAL/bin:$PATH | |
alias npm='docker run -ti --rm -w $PWD -v $PWD:$PWD node npm' | |
alias node='docker run -ti --rm -w $PWD -v $PWD:$PWD node node' | |
alias g='go install && ${PWD##*/}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment