Files
dotfiles/.emacs.d.clojure/customizations/shell-integration.el
2020-09-27 11:11:29 +02:00

11 lines
318 B
EmacsLisp

;; Sets up exec-path-from shell
;; https://github.com/purcell/exec-path-from-shell
(add-to-list 'my-packages 'exec-path-from-shell)
(when (memq window-system '(mac ns))
;; Active debug mode
;;(setq exec-path-from-shell-debug t)
(exec-path-from-shell-initialize)
(exec-path-from-shell-copy-envs
'("PATH")))