commit 92b4f8edb2e26f0e38bf664504d8ea773faffae9 parent 7edcb0729df7c8bcc2dc0b4539bb7371fc468edd Author: KΓ©vin Le Gouguec <kevin.legouguec@gmail.com> Date: Fri, 27 Dec 2019 23:37:23 +0100 Tweak Emacs font configuration Diffstat:
| M | .emacs | | | 10 | +++++++--- |
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/.emacs b/.emacs @@ -329,10 +329,14 @@ (my/unfroggify) (my/froggify))) -;; Font stuff (π€· π€¦) -(set-fontset-font t 'symbol "Symbola" nil 'prepend) +;; Font stuff π€·π€¦. Emacs comes with sensible defaults (e.g. the +;; default fontset includes Symbola for various subgroups of the +;; "symbol" script), but no color font by default. (when (>= emacs-major-version 27) - (set-fontset-font t 'symbol "Noto Color Emoji" nil 'prepend)) + ;; Prefer a color font for emojis. + (set-fontset-font t 'symbol "Noto Color Emoji" nil 'prepend) + ;; Make sure the default font does not get overzealous (β β). + (setq use-default-font-for-symbols nil)) (defun my/project-root () (when-let ((project (project-current)))