aboutsummaryrefslogtreecommitdiff
path: root/dot.emacs.d/init.el
diff options
context:
space:
mode:
authorThomas Schneider <qsx@chaotikum.eu>2026-07-27 19:43:08 +0200
committerThomas Schneider <qsx@chaotikum.eu>2026-07-27 20:02:50 +0200
commit31b147e46a7e30ab6918170e5c9de4bee64d33ac (patch)
tree6cc2130654a0144204db8ef44f5aa2a832b44589 /dot.emacs.d/init.el
parent4b013cfa9a81fce01d91f45cd5eaaa96af1ad972 (diff)
Emacs: Load custom-file even earlier; drop custom-safe-themes hashes
Diffstat (limited to 'dot.emacs.d/init.el')
-rw-r--r--dot.emacs.d/init.el12
1 files changed, 3 insertions, 9 deletions
diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el
index d0264e8..afb2839 100644
--- a/dot.emacs.d/init.el
+++ b/dot.emacs.d/init.el
@@ -52,20 +52,14 @@
(load "server")
(unless (server-running-p) (server-start))
+(setq custom-file (locate-user-emacs-file "custom.el"))
+(load custom-file :noerror)
+
(use-package modus-themes
:defer nil
- :init
- (dolist
- (hash
- '("7613ef56a3aebbec29618a689e47876a72023bbd1b8393efc51c38f5ed3f33d1"
- "c7a926ad0e1ca4272c90fce2e1ffa7760494083356f6bb6d72481b879afce1f2"))
- (add-to-list 'custom-safe-themes hash))
:config
(load-theme 'modus-vivendi-tinted))
-(setq custom-file (locate-user-emacs-file "custom.el"))
-(load custom-file :noerror)
-
(setq display-time-day-and-date t
display-time-24hr-format t)
(display-time-mode)