Visual Studio Codeの設定を見直した。
継ぎ足したタレのように積もっていた雑多な設定を削除して最低限の状態に設定しなおした。
拡張機能
- テーマ
- Dracula Theme Offcial
- vscode-icons
- 外観
- Indent Rainbow
- Output Colorizer
- trailing-spaces
- リモート開発
- Remote Development
- Tailscale
Settings.json
{ // 自動保存 "files.autoSave": "afterDelay", "files.autoSaveDelay": 100, // フォント "editor.fontSize": 18, "editor.fontFamily": "PlemolJP Console NF", // 外観設定 "editor.minimap.enabled": false, "editor.renderWhitespace": "boundary", "editor.guides.bracketPairs": true, "editor.lineHeight": 1.5, "editor.detectIndentation": true, "editor.insertSpaces": true, "editor.tabSize": 4, "editor.rulers": [ 80, 120 ], "editor.wordWrap": "on", "editor.cursorStyle": "block", "editor.cursorSmoothCaretAnimation": "on", "editor.cursorBlinking": "smooth", // Suggestion "editor.suggestSelection": "first", "editor.acceptSuggestionOnEnter": "smart", "editor.snippetSuggestions": "top", "editor.wordBasedSuggestions": "matchingDocuments", // 整形 "files.trimTrailingWhitespace": true, "files.insertFinalNewline": true, "files.trimFinalNewlines": true, "editor.formatOnSave": true, "editor.formatOnPaste": true, // ターミナル "terminal.integrated.fontFamily": "PlemolJP Console NF", "terminal.integrated.fontSize": 18, "workbench.iconTheme": "vscode-icons", "workbench.colorTheme": "Dracula Theme", }