diff options
author | Franck Cuny <franck@fcuny.net> | 2022-03-25 11:04:22 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-03-25 11:04:22 -0700 |
commit | 570800001bf96248ff3ea75ba1a5c418162db403 (patch) | |
tree | 32fd52a945eee7d2e4e38003613b1c28c9d6835a /emacs/custom | |
parent | ui: adjust theme for org-mode (diff) | |
download | emacs.d-570800001bf96248ff3ea75ba1a5c418162db403.tar.gz |
mac: ensure exec-path-from-shell is installed
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/my-settings.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/emacs/custom/my-settings.el b/emacs/custom/my-settings.el index 534e564..8e23039 100644 --- a/emacs/custom/my-settings.el +++ b/emacs/custom/my-settings.el @@ -56,6 +56,7 @@ (server-start)) (use-package exec-path-from-shell + :ensure t :if (memq window-system '(mac ns)) :hook (emacs-startup . (lambda () (setq exec-path-from-shell-arguments '("-l")) ; removed the -i for faster startup |