More updating modus config for 4.0.0-dev

This commit is contained in:
Charlotte Van Petegem 2022-12-30 11:09:38 +01:00
parent 77b2b08165
commit efe8288a19
No known key found for this signature in database
GPG key ID: 019E764B7184435A

View file

@ -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)
)