From 6a0844cf14eda02a16d0c9f8c3a1ee6fb07df183 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Fri, 7 Jan 2022 12:33:22 +0100 Subject: [PATCH] Fix eamcs theming --- modules/base/emacs/base-init.el | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/modules/base/emacs/base-init.el b/modules/base/emacs/base-init.el index 6b4605fd..d7c978f9 100644 --- a/modules/base/emacs/base-init.el +++ b/modules/base/emacs/base-init.el @@ -171,10 +171,11 @@ (use-package modus-themes :custom (modus-themes-bold-constructs t "Use bold accents") - (modus-themes-syntax 'alt-syntax-yellow-comments "Show comments in yellow instead of gray") - (modus-themes-promts 'intense-accented "Colours are nice") - (modus-themes-mode-line 'borderless "Thin borders are ugly") - (modus-themes-region 'bg-only "Don't lose syntax highlighting in the active region") + (modus-themes-syntax '(alt-syntax yellow-comments) "Show comments in yellow instead of gray") + (modus-themes-promts '(intense) "Colours are nice") + (modus-themes-completions 'opinionated "Colours are nice") + (modus-themes-mode-line '(borderless accented) "Thin borders are ugly") + (modus-themes-region '(bg-only accented) "Don't lose syntax highlighting in the active region") :config (modus-themes-load-themes) (modus-themes-load-operandi)