Files
emacs/config/path.org
2025-10-29 19:54:59 -05:00

470 B

Path

Rather than having to manage potential paths in the configuration I'll use the 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.

(use-package exec-path-from-shell
  :ensure t
  :config
  (when (memq window-system '(mac ns))
    (exec-path-from-shell-initialize)))