LoginSignup
46
20

More than 5 years have passed since last update.

VSCodeのターミナル部分のフォント設定

Posted at

ある日、VSCode上のターミナルを開いたらフォントが全角のような見栄えに。

image.png

どんな設定になっていたか

{
    "git.autofetch": true,
    "window.zoomLevel": 1,
    "editor.fontFamily": "Osaka-mono"
}

対処方法

terminal.integrated.fontFamilyという設定項目があったことがわかったので以下のようにしてひとまず解決

{
    "git.autofetch": true,
    "window.zoomLevel": 1,
    "editor.fontFamily": "Osaka-mono",
    "terminal.integrated.fontFamily": "monospace"
}

image.png

46
20
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
46
20