diff options
author | Matthew Lemon <y@yulqen.org> | 2024-07-07 12:38:24 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-07-07 12:38:24 +0100 |
commit | 7639f27ba6ad73749e764ca688a072723213b32f (patch) | |
tree | 81ad8bb94e2f84251666360ae02a3cc3f9db5b79 | |
parent | ca133147f6ca9263129278692723f18a87506716 (diff) |
Correct way to set the font
-rw-r--r-- | init.el | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -232,9 +232,12 @@ Restart works only on graphic display." ;; (when (member "Hack" (font-family-list)) ;; (add-to-list 'default-frame-alist '(font . "Hack-10")))) -(set-face-attribute 'default nil - :family "Iosevka Nerd Font" - :height 140) +(add-to-list 'default-frame-alist + '(font . "Iosevka Nerd Font-14")) + +;; (set-face-attribute 'default nil +;; :family "Iosevka Nerd Font" +;; :height 140) ;; org-caldav (use-package org-caldav |