From 355fc81e06967dd966e9d036967e71e0f94aedc5 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 14 Jan 2022 10:56:14 -0800 Subject: emacs: done with modus-themes again The theme configuration keeps breaking after each update. Let's use tango-dark instead. --- emacs/custom/fcuny-ui.el | 62 +++++++++++++++++++++++++----------------------- 1 file changed, 32 insertions(+), 30 deletions(-) diff --git a/emacs/custom/fcuny-ui.el b/emacs/custom/fcuny-ui.el index b8c5017..5776459 100644 --- a/emacs/custom/fcuny-ui.el +++ b/emacs/custom/fcuny-ui.el @@ -22,36 +22,35 @@ (use-package diminish :ensure t) -(use-package modus-themes - :ensure t - :init - (setq modus-themes-italic-constructs t - modus-themes-bold-constructs t - modus-themes-lang-checkers '(text-also background) - modus-themes-mode-line '(3d intense) - modus-themes-diffs '(desaturated) - modus-themes-fringes nil - modus-themes-paren-match '(intense) - modus-themes-syntax '(yellow-comments green-strings) - modus-themes-hl-line '(accented intense) - modus-themes-prompts '(italic) - modus-themes-region '(bg-only no-extend) - modus-themes-org-blocks '(tinted-background) - modus-themes-org-agenda '((event . (accented italic)) - (scheduled . uniform)) - modus-themes-headings '((1 . (background)) - (2 . (rainbow)) - (3 . (rainbow no-bold))) - modus-themes-variable-pitch-ui nil - modus-themes-variable-pitch-headings nil - modus-themes-scale-headings nil) - - ;; Load the theme files before enabling a theme (else you get an error). - (modus-themes-load-themes) - :config - (setq modus-themes-operandi-color-overrides - '((bg-main . "#fffff8"))) - (modus-themes-load-operandi)) +;; (use-package modus-themes +;; :init +;; (setq modus-themes-italic-constructs t +;; modus-themes-bold-constructs t +;; modus-themes-lang-checkers '(text-also background) +;; modus-themes-mode-line '(3d intense) +;; modus-themes-diffs '(desaturated) +;; modus-themes-fringes nil +;; modus-themes-paren-match '(intense) +;; modus-themes-syntax '(yellow-comments green-strings) +;; modus-themes-hl-line '(accented intense) +;; modus-themes-prompts '(italic) +;; modus-themes-region '(bg-only no-extend) +;; modus-themes-org-blocks '(tinted-background) +;; modus-themes-org-agenda '((event . (accented italic)) +;; (scheduled . uniform)) +;; modus-themes-headings '((1 . (background)) +;; (2 . (rainbow)) +;; (3 . (rainbow no-bold))) +;; modus-themes-variable-pitch-ui nil +;; modus-themes-variable-pitch-headings nil +;; modus-themes-scale-headings nil) + +;; ;; Load the theme files before enabling a theme (else you get an error). +;; (modus-themes-load-themes) +;; :config +;; (setq modus-themes-operandi-color-overrides +;; '((bg-main . "#fffff8"))) +;; (modus-themes-load-operandi)) (use-package frame :config @@ -165,4 +164,7 @@ (add-hook 'help-mode-hook #'visual-line-mode) +;; Better than the default. +(load-theme 'tango-dark t) + (provide 'fcuny-ui) -- cgit 1.4.1