-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.json
37 lines (37 loc) · 1017 Bytes
/
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
{
"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,
"go.toolsManagement.autoUpdate": true,
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"terminal.integrated.scrollback": 10000,
"terminal.integrated.showExitAlert": false,
"debug.confirmOnExit": "always",
"editor.inlineSuggest.enabled": true,
"[python]": {
"editor.formatOnType": true
},
"terminal.integrated.tabs.enabled": false,
"editor.cursorSurroundingLines": 5,
}