From 24f34fc52d55900bd6035386e13ca37b5bd4d42a Mon Sep 17 00:00:00 2001 From: Daniel <89086143+BardofSprites@users.noreply.github.com> Date: Wed, 10 Apr 2024 17:15:46 -0400 Subject: move loading modules to end --- init.el | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/init.el b/init.el index 8d3b26c..c2c0f96 100644 --- a/init.el +++ b/init.el @@ -40,12 +40,6 @@ (message "Loading file: %s" file) (load file))) -;; Load all .el files in the bard-elisp directory -(load-directory (expand-file-name "bard-elisp" user-emacs-directory)) - -;; Load all .el files in the bard-emacs-modules directory -(load-directory (expand-file-name "bard-emacs-modules" user-emacs-directory)) - ;; Esc key quit prompts (global-set-key (kbd "") 'keyboard-escape-quit) @@ -119,4 +113,10 @@ making an abbreviation to a function." (seq-split definitions 2))) (error "%s is not an abbrev table" ,table))) +;; Load all .el files in the bard-elisp directory +(load-directory (expand-file-name "bard-elisp" user-emacs-directory)) + +;; Load all .el files in the bard-emacs-modules directory +(load-directory (expand-file-name "bard-emacs-modules" user-emacs-directory)) + (provide 'init) -- cgit v1.2.3