Skip to content

Instantly share code, notes, and snippets.

@muka
Last active December 9, 2015 10:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save muka/8bada729386f5c3843f7 to your computer and use it in GitHub Desktop.
Save muka/8bada729386f5c3843f7 to your computer and use it in GitHub Desktop.
install go and go-plus for atom on ubuntu
# Install go from ppa
sudo apt-add-repository ppa:gophers/go -y
sudo apt-get update
sudo apt-get install golang golang-go.tools golang-go.tools-dev -y
# Add $GOPATH
# GOPATH="~/go"
# mkdir $GOPATH
# add go-plus packages
go get github.com/golang/lint
go get github.com/rogpeppe/godef
go get github.com/bradfitz/goimports
go get github.com/nsf/gocode
apm install go-plus
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment