diff options
| author | Thomas Schneider <qsx@chaotikum.eu> | 2024-08-26 18:09:26 +0200 |
|---|---|---|
| committer | Thomas Schneider <qsx@chaotikum.eu> | 2024-08-26 18:09:26 +0200 |
| commit | 5134f93d596def82184e389f4838d14ed9be8421 (patch) | |
| tree | e57d344819f250548b65f6e02ada0d50dbf6ff6a | |
| parent | 7d76cdc441810d14827c430b5d59d6b81cc19ab2 (diff) | |
Emacs: Switch to modus-themes
| -rw-r--r-- | dot.emacs.d/init.el | 13 |
1 files changed, 11 insertions, 2 deletions
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) |
