-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvisual-studio-code-settings.json
More file actions
70 lines (68 loc) · 2.39 KB
/
Copy pathvisual-studio-code-settings.json
File metadata and controls
70 lines (68 loc) · 2.39 KB
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
{
"git.autofetch": true,
"gitlens.keymap": "alternate",
"workbench.colorTheme": "Visual Studio Dark",
"css.validate": false,
"less.validate": false,
"scss.validate": false,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
},
"gitlens.views.fileHistory.enabled": true,
"gitlens.views.lineHistory.enabled": true,
"files.autoSave": "afterDelay",
"workbench.editor.revealIfOpen": true,
"workbench.startupEditor": "none",
"workbench.colorCustomizations": {
"statusBar.background": "#f37a4c",
"gitDecoration.ignoredResourceForeground": "#3c3c3c"
},
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\cmd.exe",
"terminal.integrated.cursorBlinking": true,
"editor.cursorSmoothCaretAnimation": true,
"editor.minimap.enabled": false,
"editor.fontFamily": "JetBrainsMono NF, JetBrains Mono, Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"[markdown]": {
"editor.minimap.enabled": true,
"editor.quickSuggestions": false
},
"npm.enableScriptExplorer": true,
"breadcrumbs.enabled": true,
"editor.suggestSelection": "first",
"powershell.powerShellDefaultVersion": "PowerShell Core 6 (x64)",
"terminal.integrated.showExitAlert": false,
"debug.inlineValues": true,
"debug.openExplorerOnEnd": true,
"workbench.iconTheme": "vscode-icons",
"[jsonc]": {
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace",
"gitlens.codeLens.scopes": [
"document"
]
},
"[json]": {
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace",
"gitlens.codeLens.scopes": [
"document"
]
},
"editor.formatOnPaste": true,
"explorer.confirmDragAndDrop": false,
"vscode-edge-devtools.headless": true,
"security.workspace.trust.untrustedFiles": "open",
"vscode-edge-devtools.mirrorEdits": true
}