summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.emacs12
-rw-r--r--.emacs-custom.el12
2 files changed, 23 insertions, 1 deletions
diff --git a/.emacs b/.emacs
index 2b6c443..8290a1d 100644
--- a/.emacs
+++ b/.emacs
@@ -236,7 +236,17 @@
;; Window management
(when window-system
- (load-theme 'eighters t)
+ (load-theme 'modus-vivendi t)
+ (eval-after-load 'ediff
+ '(dolist (eface (seq-concatenate 'list
+ ediff-even-diff-face-alist
+ ediff-odd-diff-face-alist))
+ (set-face-foreground (cdr eface) nil)
+ (set-face-background (cdr eface) (modus-themes-color 'bg-dim))))
+ (eval-after-load 'gnus
+ '(progn
+ (set-face-extend 'gnus-summary-selected t)
+ (set-face-extend 'gnus-summary-cancelled t)))
;; Bindings ala Terminator
(global-set-key (kbd "C-S-o") 'split-window-below)
(global-set-key (kbd "C-S-e") 'split-window-right)
diff --git a/.emacs-custom.el b/.emacs-custom.el
index de7a8b0..851f09f 100644
--- a/.emacs-custom.el
+++ b/.emacs-custom.el
@@ -65,6 +65,18 @@
'(markdown-indent-on-enter 'indent-and-new-item)
'(menu-bar-mode nil)
'(minibuffer-depth-indicate-mode t)
+ '(modus-themes-bold-constructs t)
+ '(modus-themes-completions 'moderate)
+ '(modus-themes-diffs 'deuteranopia)
+ '(modus-themes-fringes 'subtle)
+ '(modus-themes-mode-line nil)
+ '(modus-themes-org-blocks 'grayscale)
+ '(modus-themes-prompts 'subtle-accented)
+ '(modus-themes-region 'bg-only)
+ '(modus-themes-scale-headings t)
+ '(modus-themes-slanted-constructs t)
+ '(modus-themes-variable-pitch-headings t)
+ '(modus-themes-variable-pitch-ui t)
'(org-ellipsis "…")
'(org-fontify-done-headline nil)
'(org-fontify-quote-and-verse-blocks t)