diff options
author | Alan Pearce | 2017-01-31 14:29:17 +0100 |
---|---|---|
committer | Alan Pearce | 2017-01-31 14:29:17 +0100 |
commit | 4023678dd3408f5623b1a52155a447b31deb54ac (patch) | |
tree | c0cd38423e863c1d7013d8c8d2752422ef7990a0 /tag-emacs | |
parent | 904e37311218a1ab484aca9a25af85ff3a75cd92 (diff) | |
download | nixfiles-4023678dd3408f5623b1a52155a447b31deb54ac.tar.lz nixfiles-4023678dd3408f5623b1a52155a447b31deb54ac.tar.zst nixfiles-4023678dd3408f5623b1a52155a447b31deb54ac.zip |
Emacs: Use exec-path-from-shell on macOS
Diffstat (limited to 'tag-emacs')
-rw-r--r-- | tag-emacs/emacs.d/init.org | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index a982840f..75d62e2e 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -31,6 +31,19 @@ the buffer to be empty. user-full-name "Alan Pearce") #+end_src +** Environment Variables + +MacOS doesn’t have a reasonable way to set environment variables and +read them automatically any more. So, let’s use the +[[https://github.com/purcell/exec-path-from-shell][exec-path-from-shell]] package to set up ~exec-path~ and similar +variables from whatever my shell configuration is. + +#+BEGIN_SRC emacs-lisp +(use-package exec-path-from-shell + :if (eq system-type 'darwin) + :init (exec-path-from-shell-initialize)) +#+END_SRC + * Packaging ** Use-package |