diff options
author | bd <bdunahu@operationnull.com> | 2024-12-20 23:54:47 -0500 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2024-12-20 23:54:47 -0500 |
commit | 8c56be82235e4112210b7990ca4dd1f761fa1401 (patch) | |
tree | 22456ec8840dbf2952229d63d8ad6a97076192c6 /.config/emacs/modules/bd--themes.el | |
parent | c579503b13bac147e22952a5c0a42ace264e60b6 (diff) |
switch back to setopt rather than custom
Diffstat (limited to '.config/emacs/modules/bd--themes.el')
-rw-r--r-- | .config/emacs/modules/bd--themes.el | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/.config/emacs/modules/bd--themes.el b/.config/emacs/modules/bd--themes.el index ec95108..ddcfcf2 100644 --- a/.config/emacs/modules/bd--themes.el +++ b/.config/emacs/modules/bd--themes.el @@ -44,31 +44,31 @@ and some other minor face changes." `(mode-line-inactive ((,c :overline ,bg-button-inactive))) `(eshell-prompt ((,c :foreground ,fg-main :background ,bg-dim :height 1.1 :extend t)))))) (add-hook 'modus-themes-post-load-hook #'bd/modus-set-faces) - :custom - (modus-themes-to-toggle '(modus-operandi-tinted modus-vivendi-tinted)) - (modus-themes-mixed-fonts t) - (modus-themes-italic-constructs t) - (modus-themes-bold-constructs t) - (modus-themes-variable-pitch-ui nil) - (modus-themes-headings - '((0 variable-pitch bold 1.5) - (1 variable-pitch bold 1.4) - (2 variable-pitch regular 1.3) - (3 variable-pitch regular 1.1) - (t variable-pitch regular 1.0))) + + (setopt modus-themes-to-toggle '(modus-operandi-tinted modus-vivendi-tinted) + modus-themes-mixed-fonts t + modus-themes-italic-constructs t + modus-themes-bold-constructs t + modus-themes-variable-pitch-ui nil + modus-themes-headings + '((0 variable-pitch bold 1.5) + (1 variable-pitch bold 1.4) + (2 variable-pitch regular 1.3) + (3 variable-pitch regular 1.1) + (t variable-pitch regular 1.0)) - (modus-themes-common-palette-overrides - '((bg-mode-line-active bg-main) - (bg-mode-line-inactive bg-main) - (border-mode-line-active bg-main) - (border-mode-line-inactive bg-main) - (bg-line-number-active bg-dim) - (bg-line-number-inactive bg-dim) - (fg-heading-1 fg-term-blue-bright) - (fg-heading-2 fg-term-magenta-bright) - (bg-tab-bar bg-main) - (bg-tab-current bg-main) - (bg-tab-other bg-button-inactive)))) + modus-themes-common-palette-overrides + '((bg-mode-line-active bg-main) + (bg-mode-line-inactive bg-main) + (border-mode-line-active bg-main) + (border-mode-line-inactive bg-main) + (bg-line-number-active bg-dim) + (bg-line-number-inactive bg-dim) + (fg-heading-1 fg-term-blue-bright) + (fg-heading-2 fg-term-magenta-bright) + (bg-tab-bar bg-main) + (bg-tab-current bg-main) + (bg-tab-other bg-button-inactive)))) (load-theme 'modus-vivendi-tinted :no-confirm) (run-hooks 'modus-themes-post-load-hook) |