go layer : import GO15VENDOREXPERIMENT from env
New Go package management tools will follow this env variable to determine the location to look for dependencies See : https://github.com/golang/go/wiki/PackageManagementTools
This commit is contained in:
parent
e41938208e
commit
5f40cc56fa
1 changed files with 2 additions and 1 deletions
|
@ -12,7 +12,8 @@
|
|||
|
||||
(defun go/init-go-mode()
|
||||
(when (memq window-system '(mac ns x))
|
||||
(exec-path-from-shell-copy-env "GOPATH"))
|
||||
(exec-path-from-shell-copy-env "GOPATH")
|
||||
(exec-path-from-shell-copy-env "GO15VENDOREXPERIMENT"))
|
||||
|
||||
(use-package go-mode
|
||||
:defer t
|
||||
|
|
Reference in a new issue