From 1c034912af5f5364cf0e1473d85055ad9cee7119 Mon Sep 17 00:00:00 2001 From: JSDurand Date: Mon, 18 Aug 2025 18:03:57 +0800 Subject: basic: add font for cuneiform * basic.el (default-frame-alist): It assumes the font is already installed on the system. --- basic.el | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/basic.el b/basic.el index 6e1d7fd..11a0170 100644 --- a/basic.el +++ b/basic.el @@ -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 -- cgit v1.2.3-18-g5258