From efe8288a192eb010d98f51cc273ffcee7ce83a00 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Fri, 30 Dec 2022 11:09:38 +0100 Subject: [PATCH] More updating modus config for 4.0.0-dev --- modules/base/emacs/base-init.el | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/modules/base/emacs/base-init.el b/modules/base/emacs/base-init.el index ee36cb52..42ec08d7 100644 --- a/modules/base/emacs/base-init.el +++ b/modules/base/emacs/base-init.el @@ -175,12 +175,22 @@ ;; Theming (use-package modus-themes - :custom - (modus-themes-bold-constructs t "Use bold accents") - (modus-themes-fringes nil "No fringes") - (modus-themes-common-palette-overrides modus-themes-preset-overrides-intense "Colours are nice") - (modus-themes-region '(bg-only) "Don't lose syntax highlighting in the active region") :config + (setq modus-themes-bold-constructs t) ;; Use bold accents + (setq modus-themes-fringes nil) ;; No fringes + (setq modus-themes-common-palette-overrides + `( + ;; Colourful active modeline + (bg-mode-line-active bg-blue-intense) + (fg-mode-line-active fg-main) + ;; Borderless modeline + (border-mode-line-active unspecified) + (border-mode-line-inactive unspecified) + ;; Colours are nice + ,@modus-themes-preset-overrides-intense + ) + ) + (setq modus-themes-region '(bg-only)) ;; Don't lose syntax highlighting in the active region (load-theme 'modus-operandi t) )