From 6069a6fb22ab7f4034df4aa3a57223227daca865 Mon Sep 17 00:00:00 2001 From: Vincent Zhang Date: Mon, 1 Jul 2019 22:09:08 +0800 Subject: [PATCH] Update FAQ. For #189. --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 6c7a374..87c27be 100644 --- a/README.md +++ b/README.md @@ -297,3 +297,14 @@ Strongly recommend to use (add-hook 'doom-modeline-mode-hook 'setup-custom-doom-modeline) ``` + +1. How to specify font size in modeline? + + For example: + + ``` emacs-lisp + (setq doom-modeline-height 1) + (set-face-attribute 'mode-line nil :height 100) + (set-face-attribute 'mode-line-inactive nil :height 100) + ``` + Please refer to #189.