Emacs: use exec-path-from-shell on Linux daemons As it's usually run via systemd, there isn't much of an environment
Alan Pearce alan@alanpearce.eu
Sun, 18 Jun 2017 22:53:01 +0200
1 files changed, 3 insertions(+), 1 deletions(-)
jump to
M emacs/.emacs.d/init.org → emacs/.emacs.d/init.org
@@ -408,7 +408,9 @@ #+BEGIN_SRC emacs-lisp (use-package exec-path-from-shell :if (or (eq system-type 'darwin) - (eq system-type 'gnu/linux/windows)) + (eq system-type 'gnu/linux/windows) + (and (eq system-type 'gnu/linux) + (daemonp))) :config (progn (setq exec-path-from-shell-arguments '("-l")) (exec-path-from-shell-initialize)))