summaryrefslogtreecommitdiff
path: root/config/init-ui.el
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-08-30 17:55:32 -0700
committerFranck Cuny <franck@fcuny.net>2024-08-30 17:55:32 -0700
commitb73353dba56c220ee68feceb92cf15d3b17d6dfb (patch)
treec47a67fd964bd85f32293ae371cd759d6326e8f1 /config/init-ui.el
parentmove a few more things to init-window.el (diff)
downloademacs.d-b73353dba56c220ee68feceb92cf15d3b17d6dfb.tar.gz
a mix of stuff for denote / org / dired
Diffstat (limited to '')
-rw-r--r--config/init-ui.el19
1 files changed, 7 insertions, 12 deletions
diff --git a/config/init-ui.el b/config/init-ui.el
index 7aa8946..aac576e 100644
--- a/config/init-ui.el
+++ b/config/init-ui.el
@@ -55,15 +55,15 @@
;; https://monaspace.githubnext.com
(set-face-attribute 'default nil
:font "Monaspace Argon"
- :height 150)
+ :height 160)
(set-face-attribute 'fixed-pitch nil
:font "Monaspace Argon"
- :height 150)
+ :height 160)
(set-face-attribute 'variable-pitch nil
:font "Monaspace Radon"
- :height 150)
+ :height 160)
(use-package ef-themes
:ensure t
@@ -76,15 +76,10 @@
(ef-themes-select 'ef-light)
(setq ef-themes-to-toggle '(ef-cyprus ef-deuteranopia-light))
(setq ef-themes-headings ; read the manual's entry or the doc string
- '((0 . (variable-pitch light 1.9))
- (1 . (variable-pitch light 1.8))
- (2 . (variable-pitch regular 1.7))
- (3 . (variable-pitch regular 1.6))
- (4 . (variable-pitch regular 1.5))
- (5 . (variable-pitch 1.4)) ; absence of weight means `bold'
- (6 . (variable-pitch 1.3))
- (7 . (variable-pitch 1.2))
- (t . (variable-pitch 1.1)))))
+ '((0 . (variable-pitch light 1.3))
+ (1 . (variable-pitch light 1.2))
+ (2 . (variable-pitch regular 1.1))
+ (t . (variable-pitch 1.0)))))
(provide 'init-ui)
;;; init-ui.el ends here