summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-04-02 20:03:31 -0700
committerFranck Cuny <franck@fcuny.net>2024-04-02 20:03:31 -0700
commite90359e141aa23e65c7b9d06ef6a54cbb818f62d (patch)
tree1254f4ea7145fffccd4b8d7de781c4545ee7d3a5
parentreorganize more configs (diff)
downloademacs.d-e90359e141aa23e65c7b9d06ef6a54cbb818f62d.tar.gz
more things
-rw-r--r--init.el9
1 files changed, 5 insertions, 4 deletions
diff --git a/init.el b/init.el
index 0ef6f67..2b78efe 100644
--- a/init.el
+++ b/init.el
@@ -76,7 +76,7 @@
   (require 'use-package))
 
 (setq debug-on-error init-file-debug)
-(setq use-package-always-defer t)
+(setq use-package-always-defer nil)
 (setq use-package-always-ensure nil)
 (setq use-package-compute-statistics nil)
 (setq use-package-expand-minimally (not init-file-debug))
@@ -101,9 +101,6 @@
   "Concat DIR under the user's directory."
   (expand-file-name dir user-data-directory))
 
-(setq custom-file (user-data "customizations.el"))
-(load custom-file 'noerror)
-
 (defvar saved-window-configuration nil)
 
 (defun push-window-configuration ()
@@ -1147,6 +1144,10 @@
    whitespace-rescan-timer-time
    whitespace-silent))
 
+;;; Custom Variables
+(setq custom-file (user-data "customizations.el"))
+(load custom-file 'noerror)
+
 (report-time-since-load)
 
 ;; Local Variables: