我尝试遵循从谷歌搜索收集的建议,但我无法让它工作.我的~/.emacs.el
文件包含以下内容:
;; Set color scheme (require 'color-theme) (load-file "/home/manoj/Dropbox/conf/themes/color-theme-chocolate-rain.el") (color-theme-chocolate-rain) ;; Set font ;; (set-default-font "-unknown-Inconsolata-normal-normal-normal-*-12-*-*-*-m-0-iso10646-1") ;; Insert four spaces on tab (setq-default indent-tabs-mode nil) (setq-default tab-width 4) (setq indent-line-function 'insert-tab)
我已经注释掉了字体配置行,因为它不起作用.我正在使用2009-09-27版本的GNU Emacs 23.1.50.1(i486-pc-linux-gnu,GTK +版本2.18.0),由Debian在Ubuntu Karmic上修改.
从emacs版本来看,它似乎已安装emacs-snapshot
(好).
所以这应该工作:
sudo apt-get install ttf-inconsolata
然后输入你的〜/ .emacs文件
(set-frame-font "Inconsolata-12")
(12指的是字体大小,可以更改.)