-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
214 lines (198 loc) · 13.2 KB
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
{
/*
必要な拡張機能
・Material Icon Theme:https://marketplace.visualstudio.com/items?itemName=PKief.material-icon-theme
・Ruff:https://marketplace.visualstudio.com/items?itemName=charliermarsh.ruff
・YAML:https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml
・Even Better TOML:https://marketplace.visualstudio.com/items?itemName=tamasfe.even-better-toml
・Prettier - Code formatter:https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode
*/
/*
外観設定
*/
"workbench.colorTheme": "Default Dark Modern", // 標準のダークテーマ
"workbench.iconTheme": "material-icon-theme", // 【拡張機能】Material Icon Theme:https://marketplace.visualstudio.com/items?itemName=PKief.material-icon-theme
"material-icon-theme.folders.color": "#f0e68c", // フォルダアイコンの色
"material-icon-theme.files.color": "#a9a9a9", // ファイルアイコンの色
/*
workbench設定
*/
"workbench.settings.useSplitJSON": false, // 設定画面からsetting.jsonを編集する際デフォルト設定とユーザ設定を同時に開く機能を無効化
"workbench.editor.enablePreview": true, // 未編集ファイルが勝手に閉じられるのを防止
"workbench.editor.tabSizing": "shrink", // エディタ上部の開いているファイルのタブサイズ
"workbench.editor.pinnedTabsOnSeparateRow": true, // ピン止めされたタブがピン止めされていないタブの上に表示
"workbench.editor.wrapTabs": true, // タブが画面幅を超えたときに折り返す
"workbench.tree.indent": 24, // ツリー(例: エクスプローラー)のインデント幅をピクセル単位で設定(デフォルトは10)
"workbench.layoutControl.enabled": true, // 右上のレイアウトコントロールアイコンの表示切替
"workbench.activityBar.location": "top", // アクティビティバーの位置(通常は左側)
"workbench.sideBar.location": "left", // サイドバーを左に
"workbench.list.smoothScrolling": true, // サイドバーのスクロールを滑らかにする
"workbench.view.alwaysShowHeaderActions": true, // サイドバーのヘッダーアクションを常に表示
/*
各種色の設定
*/
"workbench.colorCustomizations": {
"tab.activeBackground": "#080034", // 表示されているタブの背景色
"editorLineNumber.activeForeground": "#fffb00", // 編集中の行番号の色
"editor.lineHighlightBackground": "#525252", // 編集中の行の強調表示色
"editor.selectionBackground": "#0004ff", // 選択範囲(ドラック操作やShift+矢印キーや全選択での選択)の色
"editor.selectionHighlightBorder": "#fffb00", // ハイライト選択範囲の枠線
"editorCursor.foreground": "#dddcc3c4", // カーソルの色
"editor.wordHighlightBackground": "#3838386e", // カーソルがある単語や一致する部分の強調色
"editorBracketMatch.border": "#fffb00", // カッコや括弧ペアの強調表示枠線
"editorWarning.background": "#817f0028", // 警告箇所の背景色
"editorError.background": "#8e00003c" // エラー箇所の背景色
},
/*
エディタ関連設定
*/
"editor.fontFamily": "'UDEV Gothic 35NFLG'", // エディタで使用するフォント
"editor.fontSize": 14, // エディタのフォントサイズ
"editor.lineNumbers": "on", // 行番号の表示
"editor.insertSpaces": true, // タブキーでスペースを挿入
"editor.tabSize": 2, // タブの幅をスペース2つ分に設定
"editor.guides.indentation": true, // インデントのガイドラインを表示
"editor.autoIndent": "advanced", // 高度なインデント機能を有効化
"editor.wrappingIndent": "indent", // 折り返し行のインデントが元の行のインデント+1
"editor.wordSegmenterLocales": "ja", // 日本語の単語分割を有効化・Ctrl+矢印でカーソルを単語単位で移動
"editor.wordWrap": "on", // エディタで長い行を折り返して表示
"editor.wordSeparators": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/? 、。!?「」【】『』()", // 単語の区切り文字
"editor.minimap.maxColumn": 100, // ミニマップの最大幅
"editor.minimap.showSlider": "always", // ミニマップのスクロールバーを常に表示
"editor.minimap.size": "fit", // ミニマップのサイズ
"editor.renderLineHighlight": "gutter", // エディタ内で現在行全体をハイライト表示
"editor.renderLineHighlightOnlyWhenFocus": true, // エディタがフォーカスを持っている場合のみ行ハイライトを表示
"editor.renderWhitespace": "boundary", // 空白文字表示設定(単語境界にのみ表示)
"editor.renderControlCharacters": true, // 制御文字(タブや改行など)を表示
"editor.suggestSelection": "first", // サジェスト一覧の初期表示項目設定
"editor.quickSuggestionsDelay": 0, // クイックサジェストの遅延をなくす
"editor.autoClosingBrackets": "always", // 括弧を自動的に閉じる
"editor.autoClosingQuotes": "always", // 引用符を自動的に閉じる
"editor.autoSurround": "quotes", // 自動的に引用符で囲む
"editor.formatOnSave": true, // ファイル保存時に自動的にコードをフォーマット
"editor.formatOnType": true, // コードを入力するたびに自動的にフォーマット
"editor.dragAndDrop": false, // テキストのドラッグアンドドロップ
"editor.emptySelectionClipboard": false, // 誤って空の行をコピーできなくする
"editor.copyWithSyntaxHighlighting": false, // コードをコピーするときにシンタックスハイライトをコピーしない
"editor.smoothScrolling": true, // エディターのスクロールを滑らかにする
"editor.scrollBeyondLastLine": false, // エディタの最後の行の後ろに余分なスペースをスクロールしない
"editor.bracketPairColorization.enabled": true, // カッコのペアを色分けして表示
"editor.mouseWheelZoom": true, // Ctrl+マウスホイールでエディターをズーム
"editor.links": true, // ファイル内リンクをクリック可能に
"editor.accessibilitySupport": "off", // 音をオフに
"editor.largeFileOptimizations": true, // 大きなファイルの読み込みを最適化
"editor.codeActionsOnSave": {
"source.organizeImports": "always", // 未使用のインポートを消す
"source.fixAll.eslint": "always" // ESLintの自動修正を有効化
},
"editor.cursorBlinking": "blink", // カーソルの点滅アニメーション
"editor.cursorWidth": 3, // カーソル幅
"editor.cursorSmoothCaretAnimation": "explicit", // カーソルのアニメーション
/*
パンくずリスト関連設定
*/
"breadcrumbs.enabled": true, // パンくずリストの機能ON
"breadcrumbs.filePath": "on", // ファイルパスを表示
"breadcrumbs.icons": true, // ファイルアイコンを表示
"breadcrumbs.showFunctions": true, // 関数名を表示
/*
エクスプローラー関連設定
*/
"explorer.incrementalNaming": "smart", // 新しいファイルやフォルダを作成する際に同名ファイルがある場合数字を加算して名前付け
/*
ファイル関連設定
*/
"files.eol": "\n", // 改行文字をLF(\n)に設定
"files.insertFinalNewline": true, // ファイルの最後に自動的に改行を追加
"files.trimFinalNewlines": true, // ファイルの末尾の余分な改行を削除
"files.trimTrailingWhitespace": true, // 行末の空白を自動的に削除
"files.autoGuessEncoding": true, //ファイルのエンコーディングを自動で推測
/*
ウィンドウ関連設定
*/
"window.commandCenter": true, // コマンドセンター(クイックアクセスをサポートする上部バー)
"window.zoomLevel": 0.3, // ウィンドウのズームレベル
/*
デバッグ関連設定
*/
"debug.inlineValues": "on", // デバッグ中にインラインで変数の値を表示
"debug.internalConsoleOptions": "openOnSessionStart", // デバッグセッションが開始されたときに内部コンソールを自動的開く
"debug.openDebug": "openOnSessionStart", // デバッグビューをセッション開始時に自動的に開く
"debug.toolBarLocation": "docked", // デバッグツールバーをデバッグウィンドウに埋め込む
/*
検索関連設定
*/
"search.showLineNumbers": true, // 検索結果に行番号を表示
/*
ターミナル関連設定
*/
"terminal.integrated.cursorBlinking": true, // ターミナルでカーソルを点滅
"terminal.integrated.copyOnSelection": true, // ターミナルでテキストを選択すると自動的にコピー
"terminal.integrated.scrollback": 10000, // ターミナルのスクロールバックバッファーの行数
"terminal.integrated.enableVisualBell": true, // ターミナル名の横にベルマーク
"terminal.integrated.mouseWheelZoom": true, // Ctrl+マウスホイールでエディターをズーム
"terminal.integrated.smoothScrolling": true, // スクロールを滑らかにする
/*
ソース管理タブ設定
*/
"scm.alwaysShowRepositories": true, // ソース管理タブでサイドバーにリポジトリを常に表示
"scm.defaultViewMode": "tree", // デフォルトの変更ファイル一覧の表示をツリー表示
"scm.diffDecorationsGutterWidth": 5, // 差分部分の緑色表示の幅の長さ
"scm.inputFontFamily": "editor", // コミットメッセージをエディターと同じフォントに設定
/*
Python関連設定
*/
"python.analysis.indexing": true, // Pythonのインデクシングを有効化(ファイル解析を高速化)
"python.analysis.autoSearchPaths": true, // 自動でパスの検索を有効化
"python.analysis.autoImportCompletions": true, // 自動インポート候補を表示
"python.analysis.userFileIndexingLimit": 6000, // ユーザーがインデックスに登録できるファイルの上限
"python.analysis.diagnosticMode": "workspace", // 開いているファイルのみの診断を実行
"python.analysis.typeCheckingMode": "standard", // 基本的な型チェックを有効化
"python.testing.pytestEnabled": true, // pytestをテストフレームワークとして有効化
"python.testing.pytestArgs": ["--cov=.", "--cov-report", "xml"], // pytest実行時の引数設定
"python.testing.autoTestDiscoverOnSaveEnabled": true, // 保存時にテストを自動的に再検出
"coverage-gutters.showGutterCoverage": true, // コードカバレッジの結果をサイドバーのライン番号に表示
"coverage-gutters.showLineCoverage": true, // 各行のカバレッジ結果を行番号に表示
"coverage-gutters.showRulerCoverage": true, // ルーラー(エディタ上部のインジケーター)にカバレッジ情報を表示
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff", // Pythonファイルのデフォルトフォーマッタをruffに設定
"editor.codeActionsOnSave": {
"source.fixAll.ruff": "always",
"source.organizeImports.ruff": "always"
},
"editor.detectIndentation": true, // インデントを自動的に検出
"editor.tabSize": 4 // タブの幅をスペース4つ分に設定
},
/*
JSON関連設定
*/
"json.schemaDownload.enable": true, // 設定しないとvscodeの設定ファイルでProblems loading referenceのエラーが出る時がある
"[json][jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode", // JSON関連ファイルに対してprettier-vscodeのフォーマッターを使用
"editor.tabSize": 2, // タブ幅をスペース
"editor.detectIndentation": true, // インデントを自動的に検出
"editor.formatOnSave": true // ファイル保存時に自動的にコードをフォーマット
},
/*
YAML関連設定
*/
"yaml.format.enable": true, // YAMLファイルのフォーマットを有効化
"[yaml][dockercompose][github-actions-workflow]": {
"editor.defaultFormatter": "redhat.vscode-yaml", // YAML関連ファイルに対してRedHatのフォーマッターを使用
"editor.tabSize": 2, // タブ幅をスペース
"editor.formatOnSave": true, // 保存時に自動フォーマット
"editor.autoIndent": "advanced", // 高度なインデント機能を有効化
"editor.quickSuggestions": {
"other": true, // その他の項目に対してクイックサジェストを表示
"comments": false, // コメント内でのクイックサジェストを無効化
"strings": true // 文字列内でのクイックサジェストを有効化
}
},
/*
TOML関連設定
*/
"[toml]": {
"editor.defaultFormatter": "tamasfe.even-better-toml", // TOMLファイル用のEven Better TOMLフォーマッターをデフォルトに設定
"editor.formatOnSave": true // 保存時に自動でフォーマット
}
}