-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode.json
131 lines (131 loc) · 3.89 KB
/
vscode.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
{
"breadcrumbs.enabled": false,
"debug.javascript.autoAttachFilter": "onlyWithFlag",
"debug.toolBarLocation": "docked",
"editor.accessibilitySupport": "off",
"editor.cursorBlinking": "solid",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontFamily": "Berkeley Mono, Menlo, Monaco, 'Courier New', monospace",
"editor.inlineSuggest.enabled": true,
"editor.minimap.enabled": false,
"editor.renderWhitespace": "none",
"editor.rulers": [
80
],
"editor.wordWrap": "on",
"editor.wrappingIndent": "indent",
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"extensions.ignoreRecommendations": false,
"files.autoSave": "onFocusChange",
"git.autofetch": true,
"git.confirmSync": false,
"github.copilot.enable": {
"*": true,
"plaintext": true,
"markdown": true,
"scminput": false,
"yaml": true
},
"gitlens.advanced.fileHistoryFollowsRenames": true,
"gitlens.blame.heatmap.enabled": false,
"gitlens.blame.highlight.enabled": false,
"gitlens.codeLens.enabled": false,
"gitlens.currentLine.enabled": false,
"gitlens.hovers.annotations.changes": false,
"gitlens.hovers.annotations.details": false,
"gitlens.hovers.annotations.enabled": false,
"gitlens.hovers.currentLine.enabled": false,
"gitlens.hovers.currentLine.over": "line",
"gitlens.menus": {
"editor": {
"blame": false,
"clipboard": true,
"compare": true,
"details": false,
"history": false,
"remote": false
},
"editorGroup": false,
"editorTab": {
"clipboard": true,
"compare": true,
"history": true,
"remote": true
},
"explorer": {
"clipboard": true,
"compare": true,
"history": true,
"remote": true
},
"scmGroup": {
"compare": true,
"openClose": true,
"stash": true,
"stashInline": true
},
"scmItem": {
"clipboard": true,
"compare": true,
"history": true,
"remote": true,
"stash": true
}
},
"javascript.updateImportsOnFileMove.enabled": "always",
"rust-analyzer.inlayHints.parameterHints.enable": false,
"rust-analyzer.inlayHints.typeHints": false,
"terminal.integrated.scrollback": 10000,
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"terminal.integrated.shellArgs.windows": "-nologo",
"typescript.updateImportsOnFileMove.enabled": "always",
"update.showReleaseNotes": false,
"window.title": "${rootName}${separator}${activeEditorShort}${separator}${profileName}",
"window.zoomLevel": 1,
"workbench.colorCustomizations": {
"terminal.foreground": "#b9bcba",
"terminal.background": "#1f1f1f",
"terminal.ansiBlack": "#3a3d43",
"terminal.ansiBlue": "#4f76a1",
"terminal.ansiCyan": "#578fa4",
"terminal.ansiGreen": "#879a3b",
"terminal.ansiMagenta": "#855c8d",
"terminal.ansiRed": "#be3f48",
"terminal.ansiWhite": "#b9bcba",
"terminal.ansiYellow": "#c5a635",
"terminal.ansiBrightBlack": "#888987",
"terminal.ansiBrightBlue": "#186de3",
"terminal.ansiBrightCyan": "#2e706d",
"terminal.ansiBrightGreen": "#0f722f",
"terminal.ansiBrightMagenta": "#fb0067",
"terminal.ansiBrightRed": "#fb001f",
"terminal.ansiBrightWhite": "#fdffb9",
"terminal.ansiBrightYellow": "#c47033"
},
"workbench.colorTheme": "Default Dark+",
"workbench.editor.untitled.hint": "hidden",
"workbench.editorAssociations": {
"git-rebase-todo": "default"
},
"workbench.startupEditor": "newUntitledFile",
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[git-commit]": {
"editor.rulers": [
72
],
"workbench.editor.restoreViewState": false
},
"[rust]": {
"editor.tabSize": 4
},
"[scss]": {
"editor.suggest.insertMode": "replace",
"gitlens.codeLens.scopes": [
"document"
],
"cSpell.fixSpellingWithRenameProvider": false
}
}