summaryrefslogtreecommitdiff
path: root/.emacs
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@gmail.com>2021-03-17 12:49:18 +0100
committerKévin Le Gouguec <kevin.legouguec@gmail.com>2021-03-17 12:49:18 +0100
commitfb6558af81b9298dfe8002053ee9ea1df239811b (patch)
tree8745b85013307aee820955f87eb62e61b9261476 /.emacs
parent5d5060a5da9eee99cdd50bc477e70d3c1d0ef38f (diff)
downloaddotfiles-fb6558af81b9298dfe8002053ee9ea1df239811b.tar.xz
Switch to dark Modus theme
Diffstat (limited to '.emacs')
-rw-r--r--.emacs12
1 files changed, 11 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)