diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2016-12-15 08:34:36 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2016-12-15 08:34:36 -0800 |
commit | bf31624a29324dcae42ed5b62cb4f78f162accd4 (patch) | |
tree | 86962a2796f1c3f032dbc0ecdec31699a2461112 | |
parent | [emacs] Don't use powerline. (diff) | |
download | emacs.d-bf31624a29324dcae42ed5b62cb4f78f162accd4.tar.gz |
[emacs] Hopefully fix exec-shell thingy.
-rw-r--r-- | emacs.d/init.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index 3885b59..2e2b9ad 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -148,10 +148,11 @@ :init (setq exec-path-from-shell-check-startup-files nil) - (exec-path-from-shell-initialize) :config - (setq exec-path-from-shell-debug t)) + (progn + (setq exec-path-from-shell-debug t) + (exec-path-from-shell-initialize))) (use-package flycheck ;; check syntax |