diff options
author | Alan Pearce | 2014-05-15 19:49:40 +0100 |
---|---|---|
committer | Alan Pearce | 2014-05-15 19:49:40 +0100 |
commit | a4362450e204edc50f2c9b3bd5d28da2a54fbff5 (patch) | |
tree | 9b704d40642ac202171629462df66ca57c261696 /tag-emacs | |
parent | 9fcd243e3b4c2fb9a540b7d0651c730fd2ac31d1 (diff) | |
download | nixfiles-a4362450e204edc50f2c9b3bd5d28da2a54fbff5.tar.lz nixfiles-a4362450e204edc50f2c9b3bd5d28da2a54fbff5.tar.zst nixfiles-a4362450e204edc50f2c9b3bd5d28da2a54fbff5.zip |
Emacs: Add and configure Go packages
Diffstat (limited to 'tag-emacs')
-rw-r--r-- | tag-emacs/emacs.d/Cask | 3 | ||||
-rw-r--r-- | tag-emacs/emacs.d/init.el | 14 |
2 files changed, 17 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/Cask b/tag-emacs/emacs.d/Cask index c58f5549..693e443d 100644 --- a/tag-emacs/emacs.d/Cask +++ b/tag-emacs/emacs.d/Cask @@ -13,6 +13,7 @@ (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 "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") 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)) |