doomemacs/modules/lang/go
2020-03-09 14:43:44 -04:00
..
autoload.el add benchmark bindings (,tbs and ,tba) 2020-02-09 10:58:49 +01:00
config.el Merge tb prefix into t prefix 2020-02-09 17:00:28 -05:00
doctor.el replace go-add-tags with go-tag 2019-11-06 14:22:24 +01:00
packages.el Bump :lang go 2020-03-09 14:43:44 -04:00
README.org mdempsky no longer maintains docode, updating to stamblerre 2020-02-24 11:17:22 -05:00

lang/go

Description

This module adds Go support.

  • Code completion (gocode)
  • Documentation lookup (godoc)
  • Eldoc support (go-eldoc)
  • REPL (gore)
  • Syntax-checking (flycheck)
  • Auto-formatting on save (gofmt)
  • Code navigation & refactoring (go-guru)
  • File templates
  • Snippets
  • Generate testing code (go-gen-test)
  • Code checking (flycheck-golangci-lint)

Module Flags

  • +lsp Enables integration for the gopls LSP server.

Prerequisites

Go

To get started with Go, you need the go tool:

MacOS

brew install go

Arch Linux

sudo pacman -S go

openSUSE

sudo zypper install go

Dependencies

This module requires a valid GOPATH, and the following Go packages:

  • gocode (for code completion & eldoc support)
  • godoc (for documentation lookup)
  • gorename (for extra refactoring commands)
  • gore (for the REPL)
  • guru (for code navigation & refactoring commands)
  • goimports (optional: for auto-formatting code on save & fixing imports)
  • gotests (for generate test code)
  • gomodifytags (for manipulating tags)
export GOPATH=~/work/go

go get -u github.com/motemen/gore/cmd/gore
go get -u github.com/stamblerre/gocode
go get -u golang.org/x/tools/cmd/godoc
go get -u golang.org/x/tools/cmd/goimports
go get -u golang.org/x/tools/cmd/gorename
go get -u golang.org/x/tools/cmd/guru
go get -u github.com/cweill/gotests/...
go get -u github.com/fatih/gomodifytags
  • golangci-lint (optional: for flycheck to integrate golangci-lint results) it is recommended to not use go get to install this one, check the documentation.

TODO Features

TODO Configuration

TODO Troubleshooting