diff --git a/init.el b/init.el index c72eea9..a385715 100644 --- a/init.el +++ b/init.el @@ -38,3 +38,8 @@ (require 'thwap-orgmode) ;; 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)))