diff options
| author | BardofSprites <[email protected]> | 2024-09-26 21:32:21 -0400 |
|---|---|---|
| committer | BardofSprites <[email protected]> | 2024-09-26 21:32:21 -0400 |
| commit | 9d944a8b64006dbb0c6776c1118bce375e85eeeb (patch) | |
| tree | 2a6096c2ea9e93e0c5d6a20db04c707bc9a34cba /bard-emacs-modules | |
| parent | 6388505244618d203b3ae6bc2fc55e59db0ebdbe (diff) | |
fix modus/ef variable pitch ui
Diffstat (limited to 'bard-emacs-modules')
| -rw-r--r-- | bard-emacs-modules/bard-emacs-theme.el | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/bard-emacs-modules/bard-emacs-theme.el b/bard-emacs-modules/bard-emacs-theme.el index a828000..014be90 100644 --- a/bard-emacs-modules/bard-emacs-theme.el +++ b/bard-emacs-modules/bard-emacs-theme.el @@ -86,8 +86,10 @@ The exact color values are taken from the active Ef theme." '((prose-verbatim yellow-cooler))) (define-key global-map (kbd "M-<f5>") #'ef-themes-select) - (setq ef-themes-to-toggle '(ef-winter ef-frost)) - (setq ef-themes-mixed-fonts t)) + (setq ef-themes-variable-pitch-ui t + ef-themes-mixed-fonts t) + + ) (use-package modus-themes :ensure t @@ -129,12 +131,20 @@ The exact color values are taken from the active Modus theme." (agenda-date . (variable-pitch regular 1.3)) (agenda-structure . (variable-pitch light 1.9)) (t . 1.1))) + + (setq modus-themes-custom-auto-reload nil + modus-themes-mixed-fonts t + modus-themes-variable-pitch-ui t + modus-themes-italic-constructs t + modus-themes-bold-constructs nil + modus-themes-completions '((t . (extrabold))) + modus-themes-prompts '(extrabold)) ;; org customization (setq org-priority-faces '((?A . (:inherit (bold next-error))) (?B . org-priority) (?C . (:inherit (shadow org-priority))))) - (setq modus-themes-mixed-fonts t) + (load-theme 'modus-vivendi t)) (use-package theme-buffet |
