all repos — archive/dotfiles @ a4362450e204edc50f2c9b3bd5d28da2a54fbff5

Superseded by nixfiles

Emacs: Add and configure Go packages
Alan Pearce alan@alanpearce.co.uk
Thu, 15 May 2014 19:49:40 +0100
commit

a4362450e204edc50f2c9b3bd5d28da2a54fbff5

parent

9fcd243e3b4c2fb9a540b7d0651c730fd2ac31d1

2 files changed, 17 insertions(+), 0 deletions(-)

jump to
M tag-emacs/emacs.d/Casktag-emacs/emacs.d/Cask
@@ -13,6 +13,7 @@ (depends-on "bind-key") (depends-on "cask")
 (depends-on "cdnjs")
 (depends-on "company")
+(depends-on "company-go")
 (depends-on "dash-at-point")
 (depends-on "deferred")
 (depends-on "diff-hl")
@@ -29,6 +30,8 @@ (depends-on "flycheck") (depends-on "framemove")
 (depends-on "geiser")
 (depends-on "ggtags")
+(depends-on "go-eldoc")
+(depends-on "go-mode")
 (depends-on "goto-chg")
 (depends-on "haskell-mode")
 (depends-on "helm")
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))