diff options
-rw-r--r-- | init.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/init.el b/init.el index 1b3fc3a..b8523e2 100644 --- a/init.el +++ b/init.el | |||
@@ -189,6 +189,13 @@ | |||
189 | '((file (styles . (partial-completion))))) | 189 | '((file (styles . (partial-completion))))) |
190 | (icomplete-mode +1) | 190 | (icomplete-mode +1) |
191 | 191 | ||
192 | ;; Emoji | ||
193 | (when-let* ((ffl (font-family-list)) | ||
194 | (symbol-font (car (or (member "Segoe UI Emoji" ffl) | ||
195 | (member "Noto Color Emoji" ffl) | ||
196 | (member "Apple Emoji" ffl))))) | ||
197 | (set-fontset-font t 'symbol (font-spec :family symbol-font) nil 'prepend)) | ||
198 | |||
192 | ;; Etc. | 199 | ;; Etc. |
193 | (:option inhibit-startup-screen t | 200 | (:option inhibit-startup-screen t |
194 | initial-buffer-choice t | 201 | initial-buffer-choice t |