summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-11-10 17:30:44 -0800
committerFranck Cuny <franck@fcuny.net>2024-11-10 17:30:44 -0800
commitabd563ac3c9295faa811e136acc4c148a3a31431 (patch)
treea686a28fb9fac3c01979ccb3ffc7ddb48a77e708
parentremoving denote (diff)
downloademacs.d-abd563ac3c9295faa811e136acc4c148a3a31431.tar.gz
switch to the default theme and dejavu for the fonts
Diffstat (limited to '')
-rw-r--r--config/init-ui.el35
-rw-r--r--early-init.el2
2 files changed, 4 insertions, 33 deletions
diff --git a/config/init-ui.el b/config/init-ui.el
index 3748c9d..8f7697a 100644
--- a/config/init-ui.el
+++ b/config/init-ui.el
@@ -51,41 +51,10 @@
("Europe/London" "London")
("Europe/Paris" "Paris")))
-(use-package modus-themes
- :ensure t
- :init
- (load-theme 'modus-operandi-tinted t)
- :custom
- (modus-themes-italic-constructs t)
- (modus-themes-bold-constructs t)
-
- (modus-themes-mixed-fonts t)
- (modus-themes-variable-pitch-ui t)
-
- (modus-themes-completions
- '((matches . (extrabold))
- (selection . (semibold italic text-also))))
-
- (modus-themes-custom-auto-reload t)
-
- (modus-themes-disable-other-themes t)
-
- (modus-themes-prompts '(italic bold))
- (modus-themes-region '(bg-only))
- (modus-themes-syntax '(green-strings))
-
- (modus-themes-paren-match '(bold))
-
- (modus-themes-headings '((t . (bold rainbow))))
- (modus-themes-scale-headings t)
-
- (modus-themes-to-toggle
- '(modus-operandi-tinted modus-vivendi-tritanopia)))
-
;; | 数字 | アルファベット | 日本語 | 絵文字 |
;; | 0123 | abcdefghijklmn | あいう | 🍎🍎🍎 |
-(set-face-attribute 'default nil :family "Source Code Pro" :height 170)
-(set-face-attribute 'variable-pitch nil :family "Go Mono" :height 160)
+(set-face-attribute 'default nil :family "DejaVu Sans Mono" :height 170)
+(set-face-attribute 'variable-pitch nil :family "DejaVu Sans" :height 160)
(provide 'init-ui)
;;; init-ui.el ends here
diff --git a/early-init.el b/early-init.el
index 4568e74..fc55354 100644
--- a/early-init.el
+++ b/early-init.el
@@ -21,6 +21,8 @@
;; increase font size
(set-face-attribute 'default nil :height 130)
+(invert-face 'default)
+
(setq init-file-debug t)
(setq debug-on-error init-file-debug)