home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 647b98a5f75bf972e67ce352140e65506bcd5f12
parent 313d68f6e92abafff48b7c64e196c0dd5649e9aa
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Mon, 18 Jan 2021 15:27:01 +0100

tools/emacs: display colored emoji in emacs

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mtools/emacs/config/config-appearance.el | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/tools/emacs/config/config-appearance.el b/tools/emacs/config/config-appearance.el @@ -10,7 +10,11 @@ :commands (mu-reset-fonts) :hook (after-init . mu-reset-fonts) :config - + ;; For displaying emojies 😛🦁 + (set-fontset-font t 'symbol "Apple Color Emoji") + (set-fontset-font t 'symbol "Noto Color Emoji" nil 'append) + (set-fontset-font t 'symbol "Segoe UI Emoji" nil 'append) + (set-fontset-font t 'symbol "Symbola" nil 'append) (defun mu-reset-fonts () "Reset fonts to my preferences." (interactive)