settings.json
{
// ==== html ===========================================================
"html.format.extraLiners": "", // headとbody要素の調節
"html.format.preserveNewLines": false, // 指定タグ間にスペースを入れない
"html.format.indentInnerHtml": true, // headとbodyをインデントする
// ==== javascript =====================================================
"[javascript]": {
"editor.tabSize": 2,
"editor.autoIndent": true,
},
// ==== python ==========================================================
"[python]": {
"editor.tabSize": 4
},
"python.venvFolders": [
".pyenv",
".local/share/virtualenvs"
],
// ==== window ==========================================================
"window.zoomLevel": 1,
// ==== editor ==========================================================
"editor.fontFamily": "'Migu 1M', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"editor.fontSize": 17,
"editor.formatOnSave": true,
"editor.insertSpaces": true, // インデントに使用する文字を自動判定
"editor.tabSize": 2,
"editor.minimap.enabled": false,
"editor.hover.enabled": false, // 説明ヒントを非表示
"editor.wordWrap": "on", // 端で折り返す
// ==== debug ===========================================================
"debug.console.fontSize": 18,
"debug.openDebug": "neverOpen", // デバッグ時サイドバーを開かない
}