Skip to content

Instantly share code, notes, and snippets.

@kcmerrill
Last active February 22, 2016 21:51
Show Gist options
  • Save kcmerrill/77ee2865dc9b39578356 to your computer and use it in GitHub Desktop.
Save kcmerrill/77ee2865dc9b39578356 to your computer and use it in GitHub Desktop.
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