diff --git a/config.org b/config.org index 5f5c046..1255885 100644 --- a/config.org +++ b/config.org @@ -202,21 +202,6 @@ features. #+INCLUDE: "config/auth.org" :minlevel 1 -* Path - -Rather than having to manage potential paths in the configuration I'll use the -[[https://github.com/purcell/exec-path-from-shell][exec-path-from-shell]] package. This pulls in =$PATH= from various different shells -and operating systems. At least BSD, Linux, and MacOS are supported anyway. - - -#+BEGIN_SRC emacs-lisp -(use-package exec-path-from-shell - :ensure t - :config - (when (memq window-system '(mac ns)) - (exec-path-from-shell-initialize))) -#+end_src - * Profiling Sometimes if I experience slow start times I've found [[https://github.com/jschaf/esup][esup]] does this quickly and diff --git a/config/path.org b/config/path.org new file mode 100644 index 0000000..07c0af8 --- /dev/null +++ b/config/path.org @@ -0,0 +1,14 @@ +* Path + +Rather than having to manage potential paths in the configuration I'll use the +[[https://github.com/purcell/exec-path-from-shell][exec-path-from-shell]] package. This pulls in =$PATH= from various different shells +and operating systems. At least BSD, Linux, and MacOS are supported anyway. + + +#+BEGIN_SRC emacs-lisp +(use-package exec-path-from-shell + :ensure t + :config + (when (memq window-system '(mac ns)) + (exec-path-from-shell-initialize))) +#+end_src