diff options
author | Ashton Wiersdorf <mail@wiersdorf.dev> | 2023-07-25 18:54:52 -0600 |
---|---|---|
committer | Ashton Wiersdorf <mail@wiersdorf.dev> | 2023-07-25 18:54:52 -0600 |
commit | 9943e143d7a581535a61eb3ce3e0a7aef56a7c39 (patch) | |
tree | 32923ccacaea51eac64d4dd2d297d8d967c34b63 /init.el | |
parent | c784ff61c302017085586075e775dbdbc8735f63 (diff) |
Expand modus config; improve Elgot, vertico config; fix corfu load
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 23 |
1 files changed, 19 insertions, 4 deletions
@@ -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) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; |