22
21

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

atomに話題のフォントM+を入れてみた

Posted at

はてぶでM+という最強フォントがあることを知って使ってみた
http://www.softantenna.com/wp/software/programming-font-m-plus/

エディターはatomを使ってて設定の方法を調べたのでメモ

  • まずフォントをダウンロード

http://mplus-fonts.sourceforge.jp/mplus-outline-fonts/download/index.html#download

  • そのファイルを解凍する

tar Jxvf mplus-TESTFLIGHT-058.tar.xz

  • atom側で設定する(atom -> Open your stylesheet)
styles.less

@font-face {
  font-family: mplus;
  src: url('mplus-TESTFLIGHT-058/mplus-1p-regular.ttf');
}

.editor{
  font-family: mplus;
}

*注:
mplus-TESTFLIGHT-058フォルダ以下にはいろいろなフォントが入ってるのでお好みのものを(僕はmplus-1p-regular.ttfがお気に入りです)

22
21
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
22
21

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?