7 lines
205 B
EmacsLisp
7 lines
205 B
EmacsLisp
;; Sets up exec-path-from shell
|
|
;; https://github.com/purcell/exec-path-from-shell
|
|
(when (memq window-system '(mac ns))
|
|
(exec-path-from-shell-initialize)
|
|
(exec-path-from-shell-copy-envs
|
|
'("PATH")))
|