diff options
author | Alan Pearce | 2019-07-03 18:46:32 +0200 |
---|---|---|
committer | Alan Pearce | 2019-07-03 18:46:32 +0200 |
commit | 9a57fc18816f2688c9a8f3c59f4a3cbe34350aba (patch) | |
tree | 9b5e00ad6b6088b3630f3758b0d7b0b3d4d15240 /emacs | |
parent | 482be24274f404b03583072f8a59a127aaec731b (diff) | |
download | dotfiles-9a57fc18816f2688c9a8f3c59f4a3cbe34350aba.tar.lz dotfiles-9a57fc18816f2688c9a8f3c59f4a3cbe34350aba.tar.zst dotfiles-9a57fc18816f2688c9a8f3c59f4a3cbe34350aba.zip |
Emacs: optimise exec-exec-path-from-shell init
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.emacs.d/main.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el index 8e96461..5ca765b 100644 --- a/emacs/.emacs.d/main.el +++ b/emacs/.emacs.d/main.el @@ -11,6 +11,8 @@ (use-package exec-path-from-shell :if (eq system-type 'darwin) :functions (exec-path-from-shell-initialize) + :custom ((exec-path-from-shell-arguments nil) + (exec-path-from-shell-debug t)) :config (progn (exec-path-from-shell-initialize))) |