diff options
author | David Morgan <djm_uk@protonmail.com> | 2021-08-21 19:46:06 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2021-08-21 19:46:06 +0100 |
commit | 35aac4572f79b792b8136fddc981d01febdf88df (patch) | |
tree | 1735c5d71da8382d8b4afa9472f9e09191894da6 /.emacs.d/lisp/init-misc.el | |
parent | 1165ee988f9dc12b98e13f19905d10c95038df14 (diff) | |
download | dotfiles-35aac4572f79b792b8136fddc981d01febdf88df.tar.gz |
Don't use exec-path-from-shell on X
Diffstat (limited to '.emacs.d/lisp/init-misc.el')
-rw-r--r-- | .emacs.d/lisp/init-misc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-misc.el b/.emacs.d/lisp/init-misc.el index 317216d..cb24098 100644 --- a/.emacs.d/lisp/init-misc.el +++ b/.emacs.d/lisp/init-misc.el @@ -6,7 +6,7 @@ :custom (exec-path-from-shell-arguments '("-l")) :config - (when (memq window-system '(mac ns x)) + (when (memq window-system '(mac ns)) (exec-path-from-shell-initialize))) (use-package envrc |