move loading of custom.el to the beginning

This commit is contained in:
2020-12-05 21:36:25 +01:00
parent a6e2395755
commit 496165b346
3 changed files with 6 additions and 7 deletions

View File

@@ -3,11 +3,5 @@
;;; Code:
(setq gc-cons-threshold (* 2 1000 1000)) ;; Make gc pauses faster by decreasing back the threshold. See also above.
(use-package cus-edit
:config
(setq custom-file (concat user-emacs-directory "custom.el"))
(setq custom-buffer-done-kill t)
(load custom-file t t))
(provide 'post-settings)
;;; post-settings.el ends here