summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2016-10-29 13:14:10 -0700
committerFranck Cuny <franck.cuny@gmail.com>2016-10-29 13:14:10 -0700
commit70df9f16f12061bd841b775083c3db3834589b4e (patch)
tree94b5bbac6d9bf8558acf3dd03bfdd044ab3695d3
parent[emacs] Add settings for `eshell' and `lisp-mode'. (diff)
downloademacs.d-70df9f16f12061bd841b775083c3db3834589b4e.tar.gz
[emacs] Ensure go-eldoc and gotest are installed.
-rw-r--r--emacs.d/init.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el
index 9b7132a..f0d585b 100644
--- a/emacs.d/init.el
+++ b/emacs.d/init.el
@@ -144,7 +144,10 @@
 (use-package go-mode
   :init
   (progn
-    (use-package go-eldoc)
+    (use-package go-eldoc
+      :ensure t)
+    (use-package gotest
+      :ensure t)
     (add-hook 'go-mode-hook
               (lambda ()
                 (setenv "GO15VENDOREXPERIMENT" "1")