Skip to content

Instantly share code, notes, and snippets.

@wandersoncferreira
Created December 31, 2017 13:22
Show Gist options
  • Save wandersoncferreira/a2119406bd7a6454fa620c3141f5d327 to your computer and use it in GitHub Desktop.
Save wandersoncferreira/a2119406bd7a6454fa620c3141f5d327 to your computer and use it in GitHub Desktop.
Setup GO to have a better Emacs experience
#!/usr/bin/env bash
echo 'install go complete daemon'
go get -u github.com/nsf/gocode
echo 'install go definitions'
go get -u github.com/rogpeppe/godef/...
echo 'install go imports'
go get -u golang.org/x/tools/cmd/goimports
echo 'install go tools'
go get -u golang.org/x/tools/cmd/...
go get -u golang.org/x/tools/cmd/guru
echo 'install go check'
go get -u github.com/dougm/goflymake
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment