diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-03-14 13:57:48 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-03-14 13:57:48 +0100 |
commit | f7644540a9f0ae50fa75e8e781df849b3b5096ed (patch) | |
tree | 42a4ad020145573d0ede0b3d2ad3b1008c8366d6 | |
parent | 10f11a287a00124a6f8d2949124055eaea0289db (diff) |
Adjust font settings.
-rw-r--r-- | init.org | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -230,11 +230,12 @@ I like the doom emacs modeline with buffer-appropriate icons. :header-args: :noweb-ref default-fonts :END: -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. I find Linux Biolinum pretty, especially when it’s rendered large. +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-frame-font "DejaVu Sans Mono") -(set-face-attribute 'variable-pitch nil :height 1.25 :family "Linux Biolinum") +(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 |