aboutsummaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorDaniel <[email protected]>2024-04-10 17:15:46 -0400
committerDaniel <[email protected]>2024-04-10 17:15:46 -0400
commit24f34fc52d55900bd6035386e13ca37b5bd4d42a (patch)
tree85b2c234d829121c2c1c07e80a461ef59f18f8b2 /init.el
parent69f2604d2d17829723523c055993da35aae84dfc (diff)
move loading modules to end
Diffstat (limited to 'init.el')
-rw-r--r--init.el12
1 files 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 "<escape>") '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)