summary refs log tree commit diff
path: root/emacs
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-03-22 07:00:48 -0700
committerFranck Cuny <franck@fcuny.net>2022-03-22 07:00:48 -0700
commit23c85ec46f54a2eeb5d72d13c51281bd68648888 (patch)
tree467eaffe869ce61da74ac46d62c09975e447be95 /emacs
parentprog: make flymake happy (diff)
downloademacs.d-23c85ec46f54a2eeb5d72d13c51281bd68648888.tar.gz
init: load custom commands last
Diffstat (limited to '')
-rw-r--r--emacs/init.el4
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)