This commit is contained in:
William Moore 2024-12-23 19:36:16 -06:00
parent f2e4470aaa
commit 2c90c38b12
2 changed files with 8 additions and 1 deletions

View File

@ -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))

View File

@ -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"))