diff options
author | jao <jao@gnu.org> | 2022-04-13 23:20:45 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2022-04-13 23:20:45 +0100 |
commit | 639853529175b70ab2d016dcc350ab7a2f3f67ea (patch) | |
tree | beeafad0a39b4b99a09ef18b4531f967ec80e00a | |
parent | 90b60c4707f478cd0c47f17140330104f349214c (diff) | |
download | elibs-639853529175b70ab2d016dcc350ab7a2f3f67ea.tar.gz elibs-639853529175b70ab2d016dcc350ab7a2f3f67ea.tar.bz2 |
fontsets the old way
-rw-r--r-- | init.org | 23 |
1 files changed, 12 insertions, 11 deletions
@@ -297,25 +297,26 @@ discussion. #+begin_src emacs-lisp (defun jao--set-fontsets (_f) - (set-fontset-font t 64257 "Quivira" nil 'prepend) + (set-fontset-font t 64257 "Quivira" nil) (set-fontset-font t 'egyptian "Noto Sans Egyptian Hieroglyphs" - nil 'prepend) - (set-fontset-font t 'hangul "NanumGothicCoding" nil 'prepend) + nil) + (set-fontset-font t 'hangul "NanumGothicCoding" nil) (set-fontset-font t 'unicode (face-attribute 'default :family) - nil 'prependf) + nil) (set-fontset-font t 'unicode-bmp (face-attribute 'default :family) - nil 'prependf) - (set-fontset-font t 'symbol "Symbola-10" nil 'prepend) - (set-fontset-font t 'greek "GFS Didot" nil 'prepend) - (set-fontset-font t 'mathematical "FreeSerif" nil 'prepend) - (set-fontset-font t 'emoji "Noto Color Emoji" nil 'prepend) + nil) + (set-fontset-font t 'symbol "Symbola-10" nil) + (set-fontset-font t 'greek "GFS Didot" nil) + (set-fontset-font t 'mathematical "FreeSerif" nil) + (set-fontset-font t 'emoji "Noto Color Emoji" nil) ;; boxes - (set-fontset-font t '(9472 . 9599) "Source Code Pro" nil 'prepend) + (set-fontset-font t '(9472 . 9599) "Source Code Pro" nil) ;; variation selector-16 - (set-fontset-font t 65039 "BabelStone Modern-1" nil 'prepend)) + (set-fontset-font t 65039 "BabelStone Modern-1" nil)) (jao--set-fontsets nil) (add-to-list 'after-make-frame-functions 'jao--set-fontsets) + #+end_src ***** nobreak char display #+begin_src emacs-lisp |