From 8d093f6872469b26b9e4187674e7ac8589e82a71 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Sun, 19 Sep 2021 15:07:31 -0400 Subject: [PATCH] Fix Iosevka font config --- README.org | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.org b/README.org index 98b26ce..0a2a179 100644 --- a/README.org +++ b/README.org @@ -2148,13 +2148,13 @@ epkgs.hydra #+BEGIN_SRC emacs-lisp ;; Configure the font when running as `emacs-server'. (custom-set-faces - '(default ((t (:inherit nil :height 120 :family "Iosevka"))))) + '(default ((t (:inherit nil :height 96 :family "Iosevka"))))) ;; Set all three of Emacs' font faces. ;; NOTE: This only works without `emacs-server'. -(set-face-attribute 'default nil :font "Iosevka" :height 120) -(set-face-attribute 'fixed-pitch nil :font "Iosevka" :height 120) -(set-face-attribute 'variable-pitch nil :font "Iosevka" :height 120) +;; (set-face-attribute 'default nil :font "Iosevka" :height 120) +;; (set-face-attribute 'fixed-pitch nil :font "Iosevka" :height 120) +;; (set-face-attribute 'variable-pitch nil :font "Iosevka" :height 120) ;; Define a `hydra' function for scaling the text interactively. (defhydra hydra-text-scale (:timeout 4)