diff options
| author | Ravi R Kiran <aine.marina@gmail.com> | 2015-01-08 16:47:15 (GMT) |
|---|---|---|
| committer | Ravi R Kiran <aine.marina@gmail.com> | 2015-01-08 16:47:15 (GMT) |
| commit | 9f2026b2b64f78fab284ef2a32755a9416e1f08b (patch) | |
| tree | d40acd34ef3c5441a6681d37abe657b3cda18572 | |
| parent | e6634c32069c4b384bbaf2888f9f1c5e2a379ddd (diff) | |
| download | dotemacs-9f2026b2b64f78fab284ef2a32755a9416e1f08b.zip dotemacs-9f2026b2b64f78fab284ef2a32755a9416e1f08b.tar.gz dotemacs-9f2026b2b64f78fab284ef2a32755a9416e1f08b.tar.bz2 | |
Better unicode default font
Fedora package gdouros-symbola-fonts
| -rw-r--r-- | init.el | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -25,6 +25,9 @@ (find-if (lambda (f) (find-font (font-spec :name f))) fonts)) (let ((fontval (font-candidate '"Inconsolata" "Source Code Pro" "Anonymous Pro"))) (when fontval (set-face-attribute 'default nil :font fontval))) +(when (find-font (font-spec :name "Symbola")) + (set-fontset-font "fontset-default" nil + (font-spec :size 20 :name "Symbola"))) (setq custom-file (concat ravi/init-dir "custom.el")) ;; Initialize package handling: currently using only the official repository and MELPA |
