emacs: Fix font configuration

This commit is contained in:
Erwin Boskma 2023-09-14 08:24:01 +02:00
parent 68b35c2536
commit 4d5c3bb3bd
Signed by: erwin
SSH key fingerprint: SHA256:9LmFDe1C6jSrEyqxxvX8NtJBmcbB105XoqyUZF092bg

View file

@ -395,11 +395,11 @@ I prefer the [[https://draculatheme.com][dracula theme]]
Use Iosevka as font. Use Iosevka as font.
#+begin_src emacs-lisp #+begin_src emacs-lisp
(add-to-list 'default-frame-alist `(font . ,(format "%s=%d:weight=%s:width=%s" (add-to-list 'default-frame-alist `(font . ,(format "%s-%d:weight=%s:width=%s"
my/default-font my/default-font
my/default-font-height my/default-font-height
my/default-font-weight my/default-font-weight
my/default-font-height))) my/default-font-width)))
#+end_src #+end_src
#+begin_src emacs-lisp :tangle no #+begin_src emacs-lisp :tangle no