From 5134f93d596def82184e389f4838d14ed9be8421 Mon Sep 17 00:00:00 2001 From: Thomas Schneider Date: Mon, 26 Aug 2024 18:09:26 +0200 Subject: Emacs: Switch to modus-themes --- dot.emacs.d/init.el | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'dot.emacs.d') diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el index cee5b53..31eae63 100644 --- a/dot.emacs.d/init.el +++ b/dot.emacs.d/init.el @@ -52,11 +52,20 @@ (load "server") (unless (server-running-p) (server-start)) +(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) -(load-theme 'deeper-blue) - (setq display-time-day-and-date t display-time-24hr-format t) (display-time-mode) -- cgit v1.2.3