搜索

Google
 

星期四, 三月 08, 2007

emacs23字体配置

1、编辑~/.Xresources文件,将其内容设置如下:
Xft.antialias: 1
Xft.hinting: 1
Xft.hintstyle: hintfull
Xft.rgba: rgb

Emacs.FontBackend: xft

之所以要在此设置Xft选项,是因为Emacs不像一般的gtk程序从系统环境中读取Xft配置,也不理睬fontconfig配置,这也就是为什么我们无法通过fontconfig来控制中文字体顺序的原因。

2、配置字体。如果现在以Xft为字体渲染引擎后端进入emacs会发现emacs中中文非常难看,可以通过给~/.emacs中加入以下配置:
;设置字体
(set-default-font "Bitstream Vera Sans Mono-10")
(set-fontset-font (frame-parameter nil 'font)
'han '("Microsoft YaHei" . "unicode-bmp"))

3、启动Emacs加-enable-font-backend打开Xft字体渲染引擎后端。

没有评论: