summary refs log tree commit diff
diff options
context:
space:
mode:
-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: