From 68698a3aae3f5ce1cbe75b4613a6a0213f718ce4 Mon Sep 17 00:00:00 2001 From: Jessie Hildebrandt Date: Sun, 14 Feb 2021 18:09:53 -0500 Subject: [PATCH] Fix bug re. not setting fallback unicode font --- init.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 6e43a43..25cae93 100644 --- a/init.el +++ b/init.el @@ -377,7 +377,7 @@ ;;======================================== ;;==================== -;; Default Face +;; Font Configuration ;;==================== ;; Set up styling for the default face. @@ -385,6 +385,10 @@ :family "Fira Code Regular" :height 100) +;; Ensure that the monocolor "Symbola" font can be used for emoji and unicode symbols. +;; (Emacs 27+ on some systems may not have a monocolor fallback font set after multicolor emoji fonts.) +(set-fontset-font t 'symbol "Symbola" nil 'append) + ;;==================== ;; Theme ;;====================