From c8012f61060f02641a0e5d9f3cb25cca433b3569 Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Fri, 1 Jul 2022 18:58:42 -0400 Subject: [PATCH] Fix unicode font --- README.org | 3 ++- config.el | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index e735643..8652eb5 100644 --- a/README.org +++ b/README.org @@ -329,7 +329,8 @@ Set regular, variable pitch, and big fonts. #+BEGIN_SRC emacs-lisp :tangle config.el (setq doom-font (font-spec :family "VictorMono Nerd Font" :size 14) doom-variable-pitch-font (font-spec :family "Ubuntu Nerd Font" :size 14) - doom-big-font (font-spec :family "VictorMono Nerd Font" :size 24)) + doom-big-font (font-spec :family "VictorMono Nerd Font" :size 24) + doom-unicode-font (font-spec :family "FiraCode Nerd Font" :size 14)) #+END_SRC Enable *bold* and /italic/ text. diff --git a/config.el b/config.el index 9c8661b..414f231 100644 --- a/config.el +++ b/config.el @@ -4,7 +4,8 @@ (setq doom-font (font-spec :family "VictorMono Nerd Font" :size 14) doom-variable-pitch-font (font-spec :family "Ubuntu Nerd Font" :size 14) - doom-big-font (font-spec :family "VictorMono Nerd Font" :size 24)) + doom-big-font (font-spec :family "VictorMono Nerd Font" :size 24) + doom-unicode-font (font-spec :family "FiraCode Nerd Font" :size 14)) (after! doom-themes (setq doom-themes-enable-bold t