Commit e6a5fa34582f

Vincent Demeester <vincent@sbr.pm>
2021-01-29 10:37:52
tools/emacs: playing with fontset
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 7c3631a
Changed files (2)
tools/emacs/early-init.el
@@ -95,6 +95,11 @@ This is used internally by `vde/modus-themes-toggle'."
                       :family font-family-sans
                       :weight 'regular))
 
+(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)
+
 ;; Ignore X resources; its settings would be redundant with the other settings
 ;; in this file and can conflict with later config (particularly where the
 ;; cursor color is concerned).
tools/emacs/init.el
@@ -27,6 +27,7 @@
 
 (require 'package)
 
+;; (setq package-archives nil) ;; To rely only on packages from nix
 (setq package-archives
       '(("melpa" . "http://melpa.org/packages/")
         ("org" . "https://orgmode.org/elpa/")