forked from cadruvimesa/ubuntu-vm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode-settings.json
41 lines (39 loc) · 1.3 KB
/
vscode-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
{
"files.insertFinalNewline": true,
"explorer.confirmDelete": false,
"go.formatTool": "goimports",
"git.autofetch": true,
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 140,
// Set File Encondings from utf8 (default) to western europe dos (cp850)
"[powershell]": {
"files.encoding": "windows1252"
},
"[bat]": {
"files.encoding": "windows1252"
},
"editor.renderWhitespace": "all",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"java.configuration.checkProjectSettingsExclusions": false,
"java.project.importOnFirstTimeStartup": "automatic",
"docker.host":"ssh://[email protected]",
"go.delveConfig": {
"dlvLoadConfig": {
"followPointers": true,
"maxVariableRecurse": 1,
"maxStringLen": 256,
"maxArrayValues": 64,
"maxStructFields": -1
},
"apiVersion": 2,
"showGlobalVariables": false
},
"explorer.confirmDragAndDrop": false,
"go.toolsManagement.autoUpdate": true,
"debug.onTaskErrors": "abort",
"diffEditor.renderSideBySide": false,
"redhat.telemetry.enabled": false,
"git.enableSmartCommit": true,
"window.zoomLevel": 3,
}