Skip to content

Instantly share code, notes, and snippets.

@smartpcr
Created November 17, 2018 10:03
Show Gist options
  • Select an option

  • Save smartpcr/467f52d650ea16813739aac2791e8ec8 to your computer and use it in GitHub Desktop.

Select an option

Save smartpcr/467f52d650ea16813739aac2791e8ec8 to your computer and use it in GitHub Desktop.
# 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"
@smartpcr
Copy link
Author

3 steps to setup oh my zsh on mac:

  1. brew install zsh zsh-completions
  2. sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment