# HG changeset patch # User Augie Fackler # Date 1515276180 18000 # Node ID 6f3342c9e53de8f0f35a32e3ee1f116e50503c7f # Parent c2a49960f11f5eb7b31c0089b5c0e244ef502bbf emacs: use exec-path-from-shell-initialize on OS X This should mean I can start emacs like a normal application and have things work. diff --git a/.elisp/settings/00.bootstrap.el b/.elisp/settings/00.bootstrap.el --- a/.elisp/settings/00.bootstrap.el +++ b/.elisp/settings/00.bootstrap.el @@ -27,6 +27,7 @@ use-package smart-mode-line rich-minority + exec-path-from-shell ;; disabled until I don't need a modified version ;; textmate diff --git a/.elisp/settings/00.environment.el b/.elisp/settings/00.environment.el new file mode 100644 --- /dev/null +++ b/.elisp/settings/00.environment.el @@ -0,0 +1,2 @@ +(when (memq window-system '(mac ns)) + (exec-path-from-shell-initialize))