summaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-01-14 10:56:14 -0800
committerFranck Cuny <franck@fcuny.net>2022-01-14 10:56:14 -0800
commit355fc81e06967dd966e9d036967e71e0f94aedc5 (patch)
treed0801927b43d22d3e41a8d487335030fa9c05843 /emacs
parentemacs: simplify git/magit configuration (diff)
downloademacs.d-355fc81e06967dd966e9d036967e71e0f94aedc5.tar.gz
emacs: done with modus-themes again
The theme configuration keeps breaking after each update. Let's use tango-dark instead.
Diffstat (limited to '')
-rw-r--r--emacs/custom/fcuny-ui.el62
1 files 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)