Long-Slow-Distance

Programming Notes with Unity

メニュー

[VSCode] いつものユーザー設定

今日VisualStudioCodeを更新したらミニマップが表示されるようになっていて、
ミニマップ要らない派なので非表示にするのにまた1個ユーザー設定に書くものが増えた。

ついでなのでGistに自分用のいつもの設定をあげといた。

// Place your settings in this file to overwrite the default settings
{
// Controls if the editor shows reference information for the modes that support it
"editor.referenceInfos": false,
// Controls if the editor will insert spaces for tabs. Accepted values: "auto", true, false. If set to "auto", the value will be guessed when a file is opened.
"editor.insertSpaces": false,
// エディターで空白文字を表示するかどうかを制御します
"editor.renderWhitespace": true,
// 自動挿入された末尾の空白を削除する
"editor.trimAutoWhitespace": false,
// ミニマップの表示On/Off
"editor.minimap.enabled": false
}

関連記事