aboutsummaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
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)