{
// ウィンドウ設定
“window.title”: “${dirty}${activeEditorShort} / ${rootName}”,
“window.zoomLevel”: 0.8, // ズームレベル
// エディター設定
//”editor.fontFamily”: “‘Ricty Diminished'”,
//”editor.fontFamily”: “‘PlemolJP Light'”,
//”editor.fontFamily”: “‘Bizin Gothic Regular'”,
//”editor.fontFamily”: “‘UDEV Gothic NF Regular'”,
“editor.fontFamily”: “‘BIZ UDGothic'”,
//”editor.fontFamily”: “‘MesloLGS NF'”,
“editor.fontSize”: 16.5, // エディターフォントサイズ
“editor.tabSize”: 2, // タブサイズ
“editor.lineHeight”: 22, // ライン高
“editor.letterSpacing”: 0, // 文字間隔
“editor.codeLens”: true, // コードレンズ表示
“editor.renderLineHighlight”: “all”, // 選択中の行を強調する
“editor.glyphMargin”: true, // 行の左端に余白を作る
“editor.roundedSelection”: true, // 選択範囲の角を丸める
“editor.formatOnType”: true, // コード整形
“editor.formatOnPaste”: true, // コード整形
“editor.folding”: true, // コードの折りたたみを許可
“editor.lineNumbers”: “on”, // 行番号の表示
“editor.scrollBeyondLastLine”: false, // 最終行よりも下へのスクロールを許可
“editor.renderControlCharacters”: true, // 制御文字の表示
“editor.insertSpaces”: true, // インデントのガイドラインを表示
“editor.autoIndent”: “advanced”, // オートインデント
“editor.cursorStyle”: “line”, // カーソルの形状
“editor.cursorBlinking”: “smooth”, // カーソルの表示形式
“editor.cursorWidth”: 2, // カーソル幅
“editor.emptySelectionClipboard”: true, // 選択範囲無しでのコピーを許可
“editor.links”: true, // リンクをクリック可能に
“editor.copyWithSyntaxHighlighting”: false, //書式設定なしでテキストをコピーする
“editor.mouseWheelScrollSensitivity”: 0.7, // マウスホイール回転の移動係数
“editor.mouseWheelZoom”: true, // Ctrl+マウスホイールによるズームを無効化
“editor.suggestFontSize”: 17, // サジェストの文字サイズ
“editor.suggestLineHeight”: 17, // サジェスト欄の行の高さ
“editor.renderWhitespace”: “all”, // ホワイトスペース表示
“editor.defaultFormatter”: “esbenp.prettier-vscode”, // デフォルトフォーマッタ
“editor.unicodeHighlight.nonBasicASCII”: false, // ASCII文字以外の強調表示
“editor.unicodeHighlight.ambiguousCharacters”: false, // ASCII文字と混同される可能性のある文字を強調表示
“editor.formatOnSave”: true, // 保存時自動フォーマット
“editor.bracketPairColorization.enabled”: true,
“editor.quickSuggestions”: {
“comments”: false, // コメント内では無効
“strings”: true, // 文字列内では有効
“other”: true // その他の場所で有効
},
//ターミナル
“terminal.integrated.fontFamily”: “‘MesloLGS NF'”, // フォント
“terminal.integrated.fontSize”: 16, // フォントサイズ
“files.exclude”: {
“/.git”: true, “/.history”: true,
“/.idea”: true, “/.DS_Store”: true,
“/.vscode”: true, “/.expo”: true,
“/.expo-shared”: true // “.vs”: true,
},
// ワークベンチ設定
“workbench.editor.showTabs”: “multiple”, // タブを表示
“workbench.statusBar.visible”: true, // ワークベンチ下部のステータス表示
// Emmet
“emmet.showAbbreviationSuggestions”: true,
“emmet.showExpandedAbbreviation”: “always”,
“emmet.triggerExpansionOnTab”: true,
“workbench.iconTheme”: “material-icon-theme”,
“git.autofetch”: true,
“git.confirmSync”: false
}