diff options
author | bd <bdunahu@operationnull.com> | 2024-12-02 00:26:23 -0500 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2024-12-02 00:26:23 -0500 |
commit | 59c898ea14d841864bde19da65b8498d9b0f0a39 (patch) | |
tree | 13462bfe334b6494b3976b4df2c79fde03a675a1 /.config/emacs/modules/bd--themes.el | |
parent | 116fc2b156a08932a182319220efdab497b270d0 (diff) |
pad modeline, change org latex headers
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) |