|
|
见附图,
字体同样是Courier 12,为何在xchat里没有问题,在gvim里中文文字间隔就太宽了呢?
需要怎么设置才对呢?
环境:xorg-x11-6.8.2-r6 freetype-2.1.9-r1
我的local.conf设置为:
- <!-- Use the TureType Byte Code Interpreter, turn the auto hinter off -->
- <match target="font">
- <edit name="autohint" mode="assign">
- <bool>false</bool>
- </edit>
- <edit name="hinting" mode="assign">
- <bool>true</bool>
- </edit>
- <edit name="hintstyle" mode="assign">
- <const>hintmedium</const>
- </edit>
- </match>
- <!-- Disable Anti Aliasing for a range on pixel-based size -->
- <match target="font">
- <test compare="less" name="pixelsize" qual="any">
- <int>20</int>
- </test>
- <edit mode="assign" name="antialias">
- <bool>false</bool>
- </edit>
- </match>
- <!-- SimSun misadvertise themselves as monospaced -->
- <match target="font">
- <test name="family"><string>SimSun</string></test>
- <edit name="globaladvance"><bool>false</bool></edit>
- <edit name="spacing"><const>proportional</const></edit>
- </match>
- <!-- Use SimHei as bold.
- -->
- <match target="pattern">
- <test name="family">
- <string>SimSun</string>
- </test>
- <test name="weight" compare="more_eq">
- <const>bold</const>
- </test>
- <edit name="family" mode="assign">
- <string>SimHei</string>
- </edit>
- </match>
复制代码 |
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?注册
x
|