我尝试遵循从Google搜索收集的建议,但我无法使其工作.我的〜/ .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)
我已经评论了字体配置行,因为它不起作用.我在Ubuntu Karmic上使用Debian修改的2009-09-27 GNU Emacs 23.1.50.1(i486-pc-linux-gnu,GTK版本2.18.0).
从emacs版本来看,您似乎已经安装了emacs-snapshot(很好).
原文链接:https://www.f2er.com/ubuntu/348980.html所以这应该工作:
sudo apt-get install ttf-inconsolata
然后放入你的〜/ .emacs文件
(set-default-font "Inconsolata-12")
(12指字体大小,可以更改.)