-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode-settings.json
86 lines (74 loc) · 2.46 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
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
{
"editor.renderWhitespace": "all",
"editor.tabSize": 2,
"editor.cursorBlinking": "solid",
"editor.renderLineHighlight": "none",
"editor.occurrencesHighlight": false,
"editor.matchBrackets": "never",
"editor.formatOnPaste": false,
"editor.minimap.enabled": false,
"editor.renderIndentGuides": false,
"editor.overviewRulerBorder": false,
"editor.suggestSelection": "first",
"editor.acceptSuggestionOnEnter": "off",
"editor.snippetSuggestions": "top",
"editor.renderControlCharacters": false,
"editor.gotoLocation.multipleDefinitions": "goto",
// "editor.hover.enabled": false,
"editor.parameterHints.enabled": false,
"editor.fontSize": 13,
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
},
"workbench.colorTheme": "Monokai Minimal",
"workbench.settings.openDefaultKeybindings": true,
"workbench.editor.labelFormat": "medium",
"workbench.fontAliasing": "antialiased",
"workbench.iconTheme": null,
"workbench.list.horizontalScrolling": true,
"workbench.startupEditor": "none",
"workbench.statusBar.visible": true,
"workbench.activityBar.visible": true,
// "workbench.editor.enablePreview": false,
"workbench.editor.closeOnFileDelete": true,
"workbench.colorCustomizations": {
"editorCursor.foreground": "#f92672",
"terminalCursor.foreground": "#ff9700",
"terminalCursor.background": "#ff9700"
},
"window.zoomLevel": 0,
"window.nativeTabs": true,
"window.titleBarStyle": "native",
"files.insertFinalNewline": true,
"search.exclude": {
"**.bak": true,
"**.dump": true,
"log": true
},
"search.quickOpen.includeSymbols": true,
"search.showLineNumbers": true,
"diffEditor.ignoreTrimWhitespace": false,
"diffEditor.renderSideBySide": true,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.cursorBlinking": false,
"explorer.autoReveal": false,
"explorer.compactFolders": false,
"extensions.ignoreRecommendations": true,
"extensions.autoCheckUpdates": false,
"breadcrumbs.enabled": true,
"git.enableSmartCommit": true,
"liveServer.settings.donotShowInfoMsg": true,
"bracket-pair-colorizer-2.showHorizontalScopeLine": false,
"bracket-pair-colorizer-2.showVerticalScopeLine": false,
"trailing-spaces.highlightCurrentLine": false,
"trailing-spaces.includeEmptyLines": false,
"indentRainbow.colors": [
"rgba(0,0,0,0)",
"rgba(0,0,0,0)",
"rgba(0,0,0,0)",
"rgba(0,0,0,0)"
],
"svg.preview.mode": "svg"
}