diff options
-rw-r--r-- | basic.el | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -168,6 +168,7 @@ (add-to-list 'default-frame-alist '(width . 118)) (add-to-list 'default-frame-alist '(height . 35)) (add-to-list 'default-frame-alist '(font . "Droid Sans Mono for Powerline-20")) +;; (add-to-list 'default-frame-alist '(font . "NotoSansCuneiform-Regular-20")) (add-to-list 'default-frame-alist '(ns-transparent-titlebar . t)) (add-to-list 'default-frame-alist '(ns-appearance . dark)) (add-to-list 'default-frame-alist '(fullscreen . maximized)) @@ -175,6 +176,19 @@ (setq revert-without-query '(".*")) (set-face-attribute 'variable-pitch nil :family "Avenir" :height 1.0) +;;; Font for Cuneiform + +;; NOTE: Remember to install the font on the computer system so that +;; Emacs can access the font, and remember that the name of the font +;; is not necessarily equal to the name of the font file. + +;; (set-fontset-font +;; t +;; 'cuneiform +;; (font-spec +;; :size 20 +;; :name "Noto Sans Cuneiform")) + ;;; Adjust default size ;;;###autoload |