all repos — archive/dotfiles @ a4362450e204edc50f2c9b3bd5d28da2a54fbff5

Superseded by nixfiles

Emacs: Add and configure Go packages

Alan Pearce
commit

a4362450e204edc50f2c9b3bd5d28da2a54fbff5

parent

9fcd243e3b4c2fb9a540b7d0651c730fd2ac31d1

1 file changed, 14 insertions(+), 0 deletions(-)

changed files
M tag-emacs/emacs.d/init.eltag-emacs/emacs.d/init.el
@@ -591,6 +591,20 @@ (req-package flycheck
:diminish (flycheck-mode . " ✓") :init (global-flycheck-mode)) +(req-package company-go + :require go-mode + :config (progn + (setq company-go-show-annotation t) + (defun ap/company-go-setup () + (set (make-local-variable 'company-backends) + '(company-go))) + (add-hook 'go-mode-hook #'ap/company-go-setup))) + +(req-package go-eldoc + :require go-mode + :config (progn + (add-hook 'go-mode-hook #'go-eldoc-setup))) + (req-package auto-compile :init (add-hook 'emacs-lisp-mode-hook #'auto-compile-on-save-mode))