and load user configurations

This commit is contained in:
Mike 'Fuzzy' Partin 2024-07-10 01:55:23 -07:00
parent 7bdb2b06f9
commit 58fa8a8183

View File

@ -38,3 +38,8 @@
(require 'thwap-orgmode) (require 'thwap-orgmode)
;; dashboard ;; dashboard
(require 'thwap-dashboard) (require 'thwap-dashboard)
;; now that everything is loaded, let's load all the user configurations
(let ((user-config (thwap/list-files-with-extension "~/.emacs.d/thwap.d" "el")))
(dolist (config user-config)
(load-file config)))