diff options
author | Franck Cuny <franck@fcuny.net> | 2022-03-22 07:00:48 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-03-22 07:00:48 -0700 |
commit | 23c85ec46f54a2eeb5d72d13c51281bd68648888 (patch) | |
tree | 467eaffe869ce61da74ac46d62c09975e447be95 /emacs | |
parent | prog: make flymake happy (diff) | |
download | emacs.d-23c85ec46f54a2eeb5d72d13c51281bd68648888.tar.gz |
init: load custom commands last
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/init.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/init.el b/emacs/init.el index a3a16ff..d22d942 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -38,8 +38,6 @@ (require 'use-package) (setq use-package-verbose t)) -(require 'fcuny-commands) - (require 'fcuny-settings) (require 'fcuny-ui) (require 'fcuny-defuns) @@ -54,6 +52,8 @@ (require 'fcuny-tramp) (require 'fcuny-notmuch) +(require 'fcuny-commands) + ;; once we're done initializing the configuration, we start a shell ;; session with eshell. (fcuny/eshell-main) |