2015-07-11 29 views
0

我在archlinux中安裝了來自AUR的摩納哥字體,並將emacs的字體設置爲摩納哥,但當emacs啓動時,它不加載摩納哥字體,每當我設置摩納哥字體手動啓動emacs時,任何人都可以給我一些提示? 這是我.emacs.d/init.el的一部分:archlinux emacs無法自動加載摩納哥字體

(custom-set-faces 


'(default ((t (:family "Monaco" :foundry "unknown" :slant normal :weight normal :height 128 :width normal))))) 
+0

作爲一個關於如何使emacs做一些事情的一般問題,這是http://superuser.com的一個問題 –

回答

0

我覺得(自定義設置的面孔......)沒有任何意義在這種情況下,我用下面的代碼中找到在https://superuser.com/併成功。

(set-frame-font "Monaco 14" nil t) 

(add-to-list 'default-frame-alist 
      '(font . "Monaco 14"))