diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-03-15 12:16:22 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-03-15 12:16:22 +0100 |
commit | 64aa0e7eca3ed201134622b3048e7389a0f49665 (patch) | |
tree | 4485d77d948499e2035b01814ed91be6d32f5b6f | |
parent | c0acfe4054d86eba3f34a0e14662a763b22b8b8c (diff) |
Use fixed font sizes to avoid scaling surprises.
-rw-r--r-- | init.org | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -233,9 +233,9 @@ I like the doom emacs modeline with buffer-appropriate icons. I like pretty faces. For coding I like to use the DejaVu Sans Mono font. In =org-mode= and in =eww= I like to use a font with variable pitch instead of the default mono-spaced font. #+BEGIN_SRC elisp +(set-face-attribute 'fixed-pitch nil :family "DejaVu Sans Mono" :height 130) +(set-face-attribute 'variable-pitch nil :family "Vollkorn" :height 150) (set-face-attribute 'default nil :family "DejaVu Sans Mono" :height 130) -(set-face-attribute 'fixed-pitch nil :family "DejaVu Sans Mono" :height 1.0) -(set-face-attribute 'variable-pitch nil :family "Vollkorn" :height 1.1) #+END_SRC * Guix |