emacs: add exec-path-from-shell for macos

This commit is contained in:
joachimschmidt557 2024-08-29 11:19:27 +02:00
parent 12e553a735
commit 0c4acf407f
No known key found for this signature in database
GPG key ID: E0B575BE2884ACC5

View file

@ -88,6 +88,7 @@
;; (straight-use-package 'projectile)
(straight-use-package 'osm)
(straight-use-package 'editorconfig)
(straight-use-package 'exec-path-from-shell)
;; Emacs Configuration
(setq inhibit-splash-screen t)
@ -125,6 +126,11 @@
(use-package gcmh
:delight)
(use-package exec-path-from-shell
:config
(when (memq window-system '(mac))
(exec-path-from-shell-initialize)))
(use-package undo-tree
:config
(global-undo-tree-mode)