Last active
November 17, 2017 16:40
-
-
Save LastZactionHero/a0dff26d61e02bb2430c19228507bb44 to your computer and use it in GitHub Desktop.
Bash Profile
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
# 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