From a5d8b9685e0410f6ae2a0fe6d62ea09aff6de5b1 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 14 Mar 2023 13:54:39 +0100 Subject: Customize modus theme. --- init.org | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/init.org b/init.org index 2233674..ef738d7 100644 --- a/init.org +++ b/init.org @@ -167,12 +167,37 @@ The default behavior of Emacs is that you can compose multiple themes; however, (run-hooks 'after-load-theme-hook))) #+END_SRC -The Doom Emacs themes look pretty nice. I also like to highlight source buffers to distinguish them from side windows, so I enable =solaire-mode= first. + +I like to highlight source buffers to distinguish them from side windows, so I enable =solaire-mode= first. #+BEGIN_SRC elisp -;(setq frame-background-mode 'dark) (solaire-global-mode +1) -(load-theme 'doom-molokai) +#+END_SRC + +The Modus themes look pretty nice. + +#+BEGIN_SRC elisp +(setq modus-themes-mode-line '(borderless)) +(setq modus-themes-region '(bg-only)) +(setq modus-themes-completions '(opinionated)) +(setq modus-themes-paren-match '(bold intense)) +(setq modus-themes-syntax nil) +(setq modus-themes-org-agenda + '((header-block . (variable-pitch scale-title)) + (header-date . (grayscale workaholic bold-today)) + (event . (accented scale-small)) + (scheduled . uniform) + (habit . traffic-light))) +(setq modus-themes-headings + '((1 . (bold 1.4)) + (2 . (bold 1.3)) + (3 . (bold 1.2)) + (t . (semilight 1.1)))) +(setq modus-themes-scale-headings t) +(setq modus-themes-bold-constructs t) +(setq modus-themes-org-blocks 'gray-background) +(setq modus-themes-variable-pitch-headings t) +(load-theme 'modus-vivendi t) #+END_SRC Dired mode becomes much prettier with =all-the-icons=. -- cgit v1.2.3