From 95ee288c75ac3129712d3da198a343137f67c091 Mon Sep 17 00:00:00 2001 From: David Morgan Date: Thu, 19 Aug 2021 16:32:44 +0100 Subject: [PATCH] Speed up exec-path-from-shell --- .emacs.d/lisp/init-misc.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.emacs.d/lisp/init-misc.el b/.emacs.d/lisp/init-misc.el index 684007b..317216d 100644 --- a/.emacs.d/lisp/init-misc.el +++ b/.emacs.d/lisp/init-misc.el @@ -3,6 +3,8 @@ ;;; Code: (use-package exec-path-from-shell + :custom + (exec-path-from-shell-arguments '("-l")) :config (when (memq window-system '(mac ns x)) (exec-path-from-shell-initialize)))