Emacs configuration for Clojure on MacOS

This commit is contained in:
Fabio Scotto di Santolo
2020-09-27 11:11:29 +02:00
parent 4757524cc5
commit 0079f6bbb3
11 changed files with 614 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
;; 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")))