summary refs log tree commit diff
path: root/emacs.d/inits
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2015-11-15 07:53:07 -0800
committerFranck Cuny <franckcuny@gmail.com>2015-11-15 07:53:07 -0800
commit21683e11bb6f5d2edd822da41bf4f07786998a63 (patch)
tree11e66acc586e2eb9d5a95cfbc145154765f27316 /emacs.d/inits
parent[emacs] melpa is over HTTPS now. (diff)
downloademacs.d-21683e11bb6f5d2edd822da41bf4f07786998a63.tar.gz
[emacs] let's use `exec-path-from-shell`
I'm giving another try to the GUI version of Emacs, and I need
`exec-path-from-shell` to get all the required environment variables.
Diffstat (limited to '')
-rw-r--r--emacs.d/inits/00_emacs.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/emacs.d/inits/00_emacs.el b/emacs.d/inits/00_emacs.el
index 67b459b..3ab8798 100644
--- a/emacs.d/inits/00_emacs.el
+++ b/emacs.d/inits/00_emacs.el
@@ -19,6 +19,11 @@
 
 (setq tab-always-indent 'complete)
 
+(use-package exec-path-from-shell
+  :ensure t
+  :config
+  (exec-path-from-shell-initialize))
+
 (use-package server
   :config
   (unless (server-running-p)