Created
November 17, 2018 10:03
-
-
Save smartpcr/467f52d650ea16813739aac2791e8ec8 to your computer and use it in GitHub Desktop.
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
| # Go development | |
| export GOPATH="${HOME}/.go" | |
| export GOROOT="/usr/local/opt/go/libexec" | |
| export PATH="$PATH:${GOPATH}/bin:${GOROOT}/bin" | |
| test -d "${GOPATH}" || mkdir "${GOPATH}" | |
| test -d "${GOPATH}/src/github.com" || mkdir -p "${GOPATH}/src/github.com" |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
3 steps to setup oh my zsh on mac:
brew install zsh zsh-completionssh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"