From abd563ac3c9295faa811e136acc4c148a3a31431 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sun, 10 Nov 2024 17:30:44 -0800 Subject: switch to the default theme and dejavu for the fonts --- config/init-ui.el | 35 ++--------------------------------- early-init.el | 2 ++ 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) -- cgit 1.4.1