From 2c90c38b1227d31762daa9c4775ca7880d46e61c Mon Sep 17 00:00:00 2001 From: William Moore Date: Mon, 23 Dec 2024 19:36:16 -0600 Subject: [PATCH] Updates --- early-init.el | 2 +- init.el | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/early-init.el b/early-init.el index 1596268..8367f52 100644 --- a/early-init.el +++ b/early-init.el @@ -5,7 +5,7 @@ ;; Add the lib directory to the load path (add-to-list 'load-path (expand-file-name "whomp" user-emacs-directory)) -;; Add the thwap.d directory to the load path +;; Add the whomp.d directory to the load path (add-to-list 'load-path (expand-file-name "whomp.d" user-emacs-directory)) diff --git a/init.el b/init.el index 71d736e..a4bca79 100644 --- a/init.el +++ b/init.el @@ -30,6 +30,13 @@ (global-auto-revert-mode 1) (setq global-auto-revert-non-file-buffers t) +;; Load shell env for POSIX shells +(use-package exec-path-from-shell + :straight t + :defer t) +(require 'exec-path-from-shell) ;; if not using the ELPA package +(exec-path-from-shell-initialize) + (setq browse-url-browser-function 'browse-url) (setq custom-init (locate-user-emacs-file "custom-init.el"))