Skip to content

Instantly share code, notes, and snippets.

@LastZactionHero
Last active November 17, 2017 16:40
Show Gist options
  • Save LastZactionHero/a0dff26d61e02bb2430c19228507bb44 to your computer and use it in GitHub Desktop.
Save LastZactionHero/a0dff26d61e02bb2430c19228507bb44 to your computer and use it in GitHub Desktop.
Bash Profile
# Git
# https://gist.github.com/n0n0x/7be453ff18f58020bafe
source ~/.git_bash_completion
# Go
export GOPATH=$HOME/development/go
export GOSRC=$GOPATH/src/github.com/LastZactionHero
export GOBIN=$GOPATH/bin
PATH=$PATH:$GOBIN
PATH=$PATH:/usr/local/go/bin
# Docker Machine Env Macro
dme() {
eval "$(docker-machine env $@)"
}
alias dc="docker-compose"
alias dm="docker-machine"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment