home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

commit dacb39b87b577f8874f63176c767b4c771becba5
parent 4948b116c389c6a847db1770d5ae549e1b955f82
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Fri, 17 Mar 2023 10:23:14 +0100

tools/emacs: some themes changes

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mtools/emacs/early-init.el | 51+++++++++++++++++++++++++--------------------------
1 file changed, 25 insertions(+), 26 deletions(-)

diff --git a/tools/emacs/early-init.el b/tools/emacs/early-init.el @@ -68,32 +68,31 @@ (defun vde/modus-operandi () "Enable some Modus Operandi variables and load the theme. This is used internally by `vde/modus-themes-toggle'." - (setq modus-themes-slanted-constructs t - modus-themes-bold-constructs t - modus-themes-subtle-diffs t - modus-themes-rainbow-headings t - modus-themes-section-headings nil - modus-themes-scale-headings nil - modus-themes-fringes 'subtle ; {nil,'subtle,'intense} - modus-themes-mode-line '(moody) - modus-themes-hl-line nil - modus-themes-intense-paren-match t - modus-themes-prompts '(subtle-accented) ; {nil,'subtle,'intense} - modus-themes-completions '(opinionated) ; {nil,'moderate,'opinionated} - modus-themes-diffs 'desaturated ; {nil,'desaturated,'fg-only} - modus-themes-org-blocks 'greyscale ; {nil,'greyscale,'rainbow} - modus-themes-links '(neutral-underline) - modus-themes-paren-match '(subtle-bold) - modus-themes-syntax nil - modus-themes-variable-pitch-headings nil - modus-themes-rainbow-headings t - modus-themes-section-headings nil - modus-themes-scale-headings t - modus-themes-scale-1 1.05 - modus-themes-scale-2 1.1 - modus-themes-scale-3 1.15 - modus-themes-scale-4 1.2 - x-underline-at-descent-line t) + (setq + ;; modus-themes-slanted-constructs t + ;; modus-themes-bold-constructs t + modus-themes-subtle-diffs t + modus-themes-fringes 'subtle ; {nil,'subtle,'intense} + modus-themes-mode-line '(moody) + ;; modus-themes-hl-line nil + modus-themes-intense-paren-match t + ;; modus-themes-prompts '(subtle-accented) ; {nil,'subtle,'intense} + modus-themes-completions '(opinionated) ; {nil,'moderate,'opinionated} + modus-themes-diffs 'desaturated ; {nil,'desaturated,'fg-only} + modus-themes-org-blocks 'greyscale ; {nil,'greyscale,'rainbow} + ;; modus-themes-links '(neutral-underline) + modus-themes-paren-match '(subtle-bold) + ;; modus-themes-syntax nil + modus-themes-variable-pitch-headings nil + modus-themes-rainbow-headings t + modus-themes-section-headings nil + modus-themes-scale-headings t + modus-themes-scale-1 1.05 + modus-themes-scale-2 1.1 + modus-themes-scale-3 1.15 + modus-themes-scale-4 1.2 + ;; x-underline-at-descent-line t + ) (modus-themes-load-themes) (modus-themes-load-operandi))