From a4362450e204edc50f2c9b3bd5d28da2a54fbff5 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Thu, 15 May 2014 19:49:40 +0100 Subject: Emacs: Add and configure Go packages --- tag-emacs/emacs.d/init.el | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'tag-emacs/emacs.d/init.el') diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index 62bd000f..5b5feef3 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -591,6 +591,20 @@ :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)) -- cgit 1.4.1