从文件加载 VIM 字体
有没有办法从 Vim 中的文件加载字体?我的意思是我有例如 ~/.vim/somefont.ttf
字体文件,并且想将其用作 Vim 字体。是否可以?或者只支持系统安装的字体?
谢谢
Is there any way to load font from file in Vim? I mean I have for example ~/.vim/somefont.ttf
font file and want to use it as Vim font. Is it possible? Or only system installed fonts are supported?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能指向
/some/path/somefile.ttf
并要求 gvim 使用该字体,但您可以在本地为您的用户注册一个字体目录。从 shell 中运行:(
或者更好的是
~/.fonts
,因为为用户注册的字体并非特定于 vim)You cannot point to
/some/path/somefile.ttf
and ask gvim to use that font, but you can register a font directory locally, for your user.From the shell, run:
(or better yet,
~/.fonts
, since the fonts registered for the user are not specific to vim)