home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 8ffacf443a7ee6eba1541fe47e539399c39d1510
parent ce3915d3bd67df428c8249b85ed48100c33a34c0
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Thu,  8 Apr 2021 16:07:11 +0200

Emacs: remove theme customization 🙃

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

Diffstat:
Mtools/emacs/early-init.el | 21+++++++++++----------
1 file changed, 11 insertions(+), 10 deletions(-)

diff --git a/tools/emacs/early-init.el b/tools/emacs/early-init.el @@ -54,16 +54,17 @@ This is used internally by `vde/modus-themes-toggle'." (defun vde/modus-operandi-custom () "Customize modus-operandi theme" - (if (member 'modus-operandi custom-enabled-themes) - (modus-operandi-theme-with-color-variables ; this macro allows us to access the colour palette - (custom-theme-set-faces - 'modus-operandi - `(whitespace-tab ((,class (:background "#ffffff" :foreground "#cccccc")))) - `(whitespace-space ((,class (:background "#ffffff" :foreground "#cccccc")))) - `(whitespace-hspace ((,class (:background "#ffffff" :foreground "#cccccc")))) - `(whitespace-newline ((,class (:background "#ffffff" :foreground "#cccccc")))) - `(whitespace-indentation ((,class (:background "#ffffff" :foreground "#cccccc")))) - )))) + ;; (if (member 'modus-operandi custom-enabled-themes) + ;; (modus-operandi-theme-with-color-variables ; this macro allows us to access the colour palette + ;; (custom-theme-set-faces + ;; 'modus-operandi + ;; `(whitespace-tab ((,class (:background "#ffffff" :foreground "#cccccc")))) + ;; `(whitespace-space ((,class (:background "#ffffff" :foreground "#cccccc")))) + ;; `(whitespace-hspace ((,class (:background "#ffffff" :foreground "#cccccc")))) + ;; `(whitespace-newline ((,class (:background "#ffffff" :foreground "#cccccc")))) + ;; `(whitespace-indentation ((,class (:background "#ffffff" :foreground "#cccccc")))) + ;; ))) + ) (add-hook 'contrib/after-load-theme-hook 'vde/modus-operandi-custom) (vde/modus-operandi)