Adobeからソースを表示するためのフォントが出たというのでvimで利用してみました。
環境
- OS: Ubuntu 12.04 64bit
- vim: 7.3.429
- font:
- SourceCodePro: 1.009
- Ricty: 3.2.0
SourceCodePro のインストール
Adobe Font Development Kit for OpenType (AFDKO)というのを利用してビルドするみたいですが、linuxには無いっぽい?見つからないので SourceForge からダウンロードします。
Terminal1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| $ wget http://sourceforge.net/projects/sourcecodepro.adobe/files/latest/download --trust-server-names $ unzip SourceCodePro_FontsOnly-1.009.zip Archive: SourceCodePro_FontsOnly-1.009.zip creating: SourceCodePro_FontsOnly-1.009/ inflating: SourceCodePro_FontsOnly-1.009/LICENSE.txt inflating: SourceCodePro_FontsOnly-1.009/ReadMe.html inflating: SourceCodePro_FontsOnly-1.009/SourceCodePro-Black.otf inflating: SourceCodePro_FontsOnly-1.009/SourceCodePro-Black.ttf inflating: SourceCodePro_FontsOnly-1.009/SourceCodePro-Bold.otf inflating: SourceCodePro_FontsOnly-1.009/SourceCodePro-Bold.ttf inflating: SourceCodePro_FontsOnly-1.009/SourceCodePro-ExtraLight.otf inflating: SourceCodePro_FontsOnly-1.009/SourceCodePro-ExtraLight.ttf inflating: SourceCodePro_FontsOnly-1.009/SourceCodePro-Light.otf inflating: SourceCodePro_FontsOnly-1.009/SourceCodePro-Light.ttf inflating: SourceCodePro_FontsOnly-1.009/SourceCodePro-Regular.otf inflating: SourceCodePro_FontsOnly-1.009/SourceCodePro-Regular.ttf inflating: SourceCodePro_FontsOnly-1.009/SourceCodePro-Semibold.otf inflating: SourceCodePro_FontsOnly-1.009/SourceCodePro-Semibold.ttf inflating: SourceCodePro_FontsOnly-1.009/SourceCodeProReadMe.html $ cp SourceCodePro_FontsOnly-1.009/SourceCodePro*.ttf ~/.fonts/
|
vim に設定する
~/.vimrc
に利用フォントを記述します。
~/.vimrc1
| set gfn=SourceCodePro\ 10
|
Ricty Regular 10 に設定した場合。
SourceCodePro Regular 10 に設定した場合。
結構似た感じですが、Rictyと比べるとSourceCodeProのほうが大きく、文字の間隔が広いようです。
個人的にはRictyのほうが見やすいので戻します。
以上です。
参考
大崎 善治 SBクリエイティブ 2016-10-27