summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-09-06 09:45:56 -0700
committerFranck Cuny <franck@fcuny.net>2024-09-06 09:45:56 -0700
commit8b1c02e7b13d91a752d7f9e1e3f95d7fe5056117 (patch)
tree2cecb45dc83437fa06337b0b6dc49830c0c8881f
parentRevert "going to try howm" (diff)
downloademacs.d-8b1c02e7b13d91a752d7f9e1e3f95d7fe5056117.tar.gz
use Emacs default theme / colors scheme
-rw-r--r--config/init-ui.el31
1 files changed, 2 insertions, 29 deletions
diff --git a/config/init-ui.el b/config/init-ui.el
index 9372d9e..e67251c 100644
--- a/config/init-ui.el
+++ b/config/init-ui.el
@@ -51,38 +51,11 @@
("Europe/London" "London")
("Europe/Paris" "Paris")))
-;; use various monaspace fonts
-;; https://monaspace.githubnext.com
+;; ;; use various monaspace fonts
+;; ;; https://monaspace.githubnext.com
(set-face-attribute 'default nil
:font "Monaspace Argon"
:height 160)
-(set-face-attribute 'fixed-pitch nil
- :font "Monaspace Argon"
- :height 160)
-
-(set-face-attribute 'variable-pitch nil
- :font "Monaspace Radon"
- :height 160)
-
-(use-package ef-themes
- :ensure t
- :init
- (add-hook 'ef-themes-post-load-hook #'my-ef-themes-mode-line)
- :preface
- (defun my-ef-themes-mode-line ()
- "Tweak the style of the mode lines."
- (ef-themes-with-colors
- (custom-set-faces
- `(mode-line ((,c :background ,bg-active :foreground ,fg-main :box (:line-width 1 :color ,fg-dim))))
- `(mode-line-inactive ((,c :box (:line-width 1 :color ,bg-active)))))))
- :custom
- (ef-themes-region '(intense no-extend neutral))
- (ef-themes-variable-pitch-ui nil)
- (ef-themes-mixed-fonts nil)
- (ef-themes-disable-other-themes t)
- :config
- (ef-themes-select 'ef-cyprus))
-
(provide 'init-ui)
;;; init-ui.el ends here