-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.json
More file actions
32 lines (32 loc) · 819 Bytes
/
settings.json
File metadata and controls
32 lines (32 loc) · 819 Bytes
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
{
"editor.bracketPairColorization.enabled": true,
"editor.folding": false,
"editor.fontSize": 14,
"editor.minimap.enabled": false,
"editor.rulers": [
80,
120
],
"editor.tabSize": 2,
"workbench.colorTheme": "Visual Studio Dark",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"files.watcherExclude": {
"**/.bazel": true,
"**/bazel-out": true
},
"editor.formatOnSave": true,
"search.followSymlinks": false,
"terminal.integrated.scrollback": 10000,
"window.confirmBeforeClose": "keyboardOnly",
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[python]": {
"editor.formatOnType": true
},
}