当前位置:  开发笔记 > 运维 > 正文

如何在Ubuntu中的.emacs.el中设置默认字体(Inconsolata)?

如何解决《如何在Ubuntu中的.emacs.el中设置默认字体(Inconsolata)?》经验,为你挑选了1个好方法。

我尝试遵循从谷歌搜索收集的建议,但我无法让它工作.我的~/.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上修改.



1> unutbu..:

从emacs版本来看,它似乎已安装emacs-snapshot(好).

所以这应该工作:

sudo apt-get install ttf-inconsolata

然后输入你的〜/ .emacs文件

(set-frame-font "Inconsolata-12")

(12指的是字体大小,可以更改.)


快速说明:```set-default-font```在Emacs 24上已经过时.使用set-frame-font ;-)
推荐阅读
mobiledu2402851373
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有