all repos — archive/dotfiles @ 3103f43870964170d328afec95d1914ed982764c

Superseded by nixfiles

Emacs: fix exec-path on macOS
Alan Pearce alan@alanpearce.eu
Sun, 30 Jun 2019 13:12:37 +0200
commit

3103f43870964170d328afec95d1914ed982764c

parent

90a2369bda90ba0e0776fa09bf3c6f58a4b47853

1 files changed, 5 insertions(+), 0 deletions(-)

jump to
M emacs/.emacs.d/main.elemacs/.emacs.d/main.el
@@ -8,6 +8,11 @@ (require 'use-package)   (setq use-package-expand-minimally t))
 (setq use-package-always-demand (daemonp))
 
+(use-package exec-path-from-shell
+  :if (eq system-type 'darwin)
+  :config (progn
+            (exec-path-from-shell-initialize)))
+
 ;;; Customize
 
 (setq custom-file "~/.emacs.d/custom.el")