2

我最近在一个盒子上安装了来自 github 存储库的 Powerline 用户的修补字体。centOS6.6

文档中所示,我执行了运行正常并打印的脚本

[statquant@latitude fonts]$ ./install.sh 
Copying fonts...
Resetting font cache, this may take a moment...
All Powerline fonts installed to /home/statquant/.local/share/fonts

事实上:

[statquant@latitude fonts]$ tree /home/statquant/.local/share/fonts
/home/statquant/.local/share/fonts
├── Anonymice\ Powerline\ Bold\ Italic.ttf
├── Anonymice\ Powerline\ Bold.ttf
├── Anonymice\ Powerline\ Italic.ttf
├── Anonymice\ Powerline.ttf
...

但由于某种原因gvim没有选择那些字体,因为它的上下文菜单Edit > select font...我没有任何*Powerline字体的踪迹。

任何帮助表示赞赏

4

2 回答 2

2

我解决了,看着猫/etc/fonts/fonts.conf我可以看到

<dir>/usr/share/fonts</dir>                                                                     
<dir>/usr/share/X11/fonts/Type1</dir> 
<dir>/usr/share/X11/fonts/TTF</dir> 
<dir>/usr/local/share/fonts</dir>
<dir>~/.fonts</dir>                                                                             

然后我创建了一个符号链接ln -s ~/.local/share/fonts/ ~/.fonts

于 2016-08-05T06:19:59.747 回答
2

添加字体时,应将这些字体放在 fontconfig 将扫描的目录中。运行fc-list以列出可用的字体。

fontconfig 用户指南

于 2016-08-05T06:39:02.920 回答