summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <fcuny@twitter.com>2019-06-12 16:16:08 -0700
committerFranck Cuny <fcuny@twitter.com>2019-06-12 16:16:08 -0700
commit3477bb921a59b0493d2a443c22d86e7b026f00b4 (patch)
treeafb21f2c0f48c66c2b3f611d1c7c119c64476fd4
parent[emacs] don't use tips for flycheck errors (diff)
downloademacs.d-3477bb921a59b0493d2a443c22d86e7b026f00b4.tar.gz
[emacs] another try to load correctly GOPATH
-rw-r--r--emacs.d/custom/fcuny-hygiene.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/emacs.d/custom/fcuny-hygiene.el b/emacs.d/custom/fcuny-hygiene.el
index 2d74c82..1ef135f 100644
--- a/emacs.d/custom/fcuny-hygiene.el
+++ b/emacs.d/custom/fcuny-hygiene.el
@@ -7,8 +7,9 @@
 
 (use-package exec-path-from-shell
   :ensure t
-  :if (memq window-system '(mac ns))
-  :config
-  (exec-path-from-shell-initialize))
+  :init   (exec-path-from-shell-initialize)
+  (when (memq window-system '(mac ns))
+    (exec-path-from-shell-initialize))
+  (exec-path-from-shell-copy-env "GOPATH"))
 
 (provide 'fcuny-hygiene)