summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Uko Kokņevičs2025-03-09 22:08:43 +0200
committerGravatar Uko Kokņevičs2025-03-09 23:04:54 +0200
commit9c48081a7d901001ade808d54439d7160b68e51f (patch)
tree91e24ee5d5497b2666b8788b4c53626630405784
parentinit.el: Move arkta-project requiring higher up (diff)
downloademacs.d-9c48081a7d901001ade808d54439d7160b68e51f.tar.gz
emacs.d-9c48081a7d901001ade808d54439d7160b68e51f.tar.xz
emacs.d-9c48081a7d901001ade808d54439d7160b68e51f.zip
init.el: Move custom file loading further down
-rw-r--r--init.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/init.el b/init.el
index 43f8c9b..c47c17e 100644
--- a/init.el
+++ b/init.el
@@ -68,9 +68,6 @@
68 :config 68 :config
69 (advice-add #'locate-user-emacs-file :around #'$adv-write-to-sane-paths)) 69 (advice-add #'locate-user-emacs-file :around #'$adv-write-to-sane-paths))
70 70
71(when (file-exists-p custom-file)
72 (load custom-file))
73
74(use-package novice 71(use-package novice
75 :defer t 72 :defer t
76 :config 73 :config
@@ -99,6 +96,9 @@
99 (setq mac-option-modifier 'meta 96 (setq mac-option-modifier 'meta
100 mac-command-modifier 'super)) 97 mac-command-modifier 'super))
101 98
99(when (file-exists-p custom-file)
100 (load custom-file))
101
102(use-package auth-source 102(use-package auth-source
103 :defer t 103 :defer t
104 :custom 104 :custom