diff options
Diffstat (limited to '.config/emacs/modules/bd--themes.el')
-rw-r--r-- | .config/emacs/modules/bd--themes.el | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/.config/emacs/modules/bd--themes.el b/.config/emacs/modules/bd--themes.el index 84924de..0812054 100644 --- a/.config/emacs/modules/bd--themes.el +++ b/.config/emacs/modules/bd--themes.el @@ -35,14 +35,18 @@ to.") :config ;; Disable all other themes to avoid awkward blending: (mapc #'disable-theme custom-enabled-themes) + (defun bd/pad-mode-line (&rest _) + "Inserts a large space around the modeline" + (modus-themes-with-colors + (custom-set-faces + `(mode-line ((,c :box (:line-width 7 :color ,bg-main)))) + `(mode-line-inactive ((,c :box (:line-width 7 :color ,bg-main))))))) + (add-hook 'modus-themes-post-load-hook #'bd/pad-mode-line) :custom (modus-themes-mixed-fonts t) (modus-themes-italic-constructs t) (modus-themes-bold-constructs t) (modus-themes-variable-pitch-ui nil) - (modus-themes-markup '(background intense)) - (modus-themes-region '(bg-only)) - (modus-themes-syntax 'alt-syntax) (modus-themes-headings '((0 variable-pitch bold 1.5) (1 variable-pitch bold 1.4) |