aboutsummaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'init.el')
-rw-r--r--init.el23
1 files changed, 19 insertions, 4 deletions
diff --git a/init.el b/init.el
index 4a3900d..1d393ae 100644
--- a/init.el
+++ b/init.el
@@ -184,11 +184,26 @@ If the new path's directories does not exist, create them."
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; We just use the built-in high contrast theme modus-vivendi
-(load-theme 'modus-vivendi)
+(use-package emacs
+ :config
+ (require-theme 'modus-themes)
+
+ (setq modus-themes-italic-constructs nil
+ modus-themes-bold-constructs nil
+ modus-themes-disable-other-themes t
+ modus-themes-prompts '(italic bold)
+ modus-themes-org-blocks 'gray-background
+ modus-themes-completion '((matches . (extrabold))
+ (selection . (semibold italic text-also)))
+ modus-themes-syntax '(green-strings)
+ modus-themes-region '(bg-only))
+
+ (setq modus-themes-common-palette-overrides
+ '((border-mode-line-active unspecified)
+ (border-mode-line-inactive unspecified)))
+
+ (load-theme 'modus-vivendi)) ; for light theme, use modus-operandi
-;; If you like light-mode themes instead, use this:
-;(load-theme 'modus-operandi)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;