chd/applicationConfiguration/.emacs/jlj-golang.el
jowj b9ca6f9e1e Configure some changes for better go use
- specifically, use eglot / gopls
2019-10-14 19:01:25 -05:00

7 lines
179 B
EmacsLisp

(use-package eglot
:ensure t
:config
(add-hook 'go-mode-hook 'eglot-ensure)
(local-set-key "\C-x\C-m" 'compile)
(setq compile-command "go test -v && go vet && golint"))