diff options
author | David Morgan <djm_uk@protonmail.com> | 2021-08-19 16:32:44 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2021-08-19 16:32:44 +0100 |
commit | 95ee288c75ac3129712d3da198a343137f67c091 (patch) | |
tree | 0661c5f4d514032cd7f44ec93837932af0038f3d /.emacs.d/lisp/init-misc.el | |
parent | 8d69b5f8b1637a15b671587d2ee3065162d50ea5 (diff) | |
download | dotfiles-95ee288c75ac3129712d3da198a343137f67c091.tar.gz |
Speed up exec-path-from-shell
Diffstat (limited to '.emacs.d/lisp/init-misc.el')
-rw-r--r-- | .emacs.d/lisp/init-misc.el | 2 |
1 files changed, 2 insertions, 0 deletions
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))) |