diff options
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-go.el | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/emacs.d/custom/fcuny-go.el b/emacs.d/custom/fcuny-go.el index 9cc72cf..b8b76dd 100644 --- a/emacs.d/custom/fcuny-go.el +++ b/emacs.d/custom/fcuny-go.el @@ -1,3 +1,19 @@ +;; go tools that are needed: +;; go get -u github.com/mdempsky/gocode +;; go get -u github.com/rogpeppe/godef +;; go get -u golang.org/x/tools/cmd/gopls +;; 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/gotype +;; go get -u golang.org/x/tools/cmd/godoc +;; go get -u github.com/go-delve/delve/cmd/dlv +;; go get -u github.com/josharian/impl +;; go get -u github.com/cweill/gotests/... +;; go get -u github.com/fatih/gomodifytags +;; go get -u github.com/davidrjenni/reftools/cmd/fillstruct +;; go get -u github.com/uudashr/gopkgs/cmd/gopkgs +;; go get -u onnef.co/go/tools/... + (use-package go-mode :ensure t |