diff options
author | Alan Pearce | 2019-07-05 20:41:24 +0200 |
---|---|---|
committer | Alan Pearce | 2019-07-05 20:41:24 +0200 |
commit | 6e3d04de11fe1f2139a2a5ffb5ae234cf7f9d1af (patch) | |
tree | 578f579e8898bfe602ccde7122201394a02d0b68 /emacs | |
parent | 825cd9853b2d683c777c970d915256a8b438479c (diff) | |
download | dotfiles-6e3d04de11fe1f2139a2a5ffb5ae234cf7f9d1af.tar.lz dotfiles-6e3d04de11fe1f2139a2a5ffb5ae234cf7f9d1af.tar.zst dotfiles-6e3d04de11fe1f2139a2a5ffb5ae234cf7f9d1af.zip |
Emacs: run exec-path-from-shell before other :init steps
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.emacs.d/main.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el index 44076f8..a9a9b7a 100644 --- a/emacs/.emacs.d/main.el +++ b/emacs/.emacs.d/main.el @@ -13,8 +13,8 @@ :commands (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))) + :init (progn + (exec-path-from-shell-initialize))) ;;; Customize |