From b54150d28a7499bda01a32a32d26f2a15051232f Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani Date: Mon, 31 May 2021 15:59:44 -0400 Subject: [PATCH] Switch modus-themes to using use-package --- config.org | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/config.org b/config.org index fd1033e..43e7c29 100644 --- a/config.org +++ b/config.org @@ -42,12 +42,14 @@ straight.el is really nice for managing package, and it integrates nicely with u ** Theme Use the Modus Operandi theme by Protesilaos Stavrou. Its the best theme for Emacs by far, because how clear and readable it is. It is highly customizable, but I just set a few options here. #+begin_src emacs-lisp - (setq modus-themes-slanted-constructs t - modus-themes-bold-constructs t - modus-themes-mode-line '3d - modus-themes-scale-headings t - modus-themes-diffs 'desaturated) - (load-theme 'modus-vivendi t) + (use-package modus-themes + :custom + (modus-themes-slanted-constructs t) + (modus-themes-bold-constructs t) + (modus-themes-mode-line '3d) + (modus-themes-scale-headings t) + (modus-themes-diffs 'desaturated) + :config (load-theme 'modus-vivendi t)) #+end_src ** Typography *** Font -- 2.39.2