diff options
| author | Daniel <[email protected]> | 2024-04-10 17:15:46 -0400 |
|---|---|---|
| committer | Daniel <[email protected]> | 2024-04-10 17:15:46 -0400 |
| commit | 24f34fc52d55900bd6035386e13ca37b5bd4d42a (patch) | |
| tree | 85b2c234d829121c2c1c07e80a461ef59f18f8b2 | |
| parent | 69f2604d2d17829723523c055993da35aae84dfc (diff) | |
move loading modules to end
| -rw-r--r-- | init.el | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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) |
