
[VSCode] いつものユーザー設定
今日VisualStudioCodeを更新したらミニマップが表示されるようになっていて、
ミニマップ要らない派なので非表示にするのにまた1個ユーザー設定に書くものが増えた。
ついでなのでGistに自分用のいつもの設定をあげといた。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 | |
} |