-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
52 lines (51 loc) · 1.66 KB
/
settings.json
File metadata and controls
52 lines (51 loc) · 1.66 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
{
"window.menuBarVisibility": "classic",
"git.confirmSync": false,
"git.autofetch": true,
"workbench.startupEditor": "welcomePage",
"git.enableSmartCommit": true,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"liveServer.settings.donotShowInfoMsg": true,
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.inlineSuggest.suppressSuggestions": true,
"workbench.iconTheme": "sweet-vscode-icons",
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"security.workspace.trust.untrustedFiles": "newWindow",
"editor.wordWrap": "on",
"editor.linkedEditing": true,
"explorer.confirmDelete": false,
"files.autoSave": "afterDelay",
"cody.autocomplete.enabled": true,
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"javascript.updateImportsOnFileMove.enabled": "always",
"explorer.confirmDragAndDrop": false,
"debug.toolBarLocation": "docked",
"redhat.telemetry.enabled": true,
"editor.semanticTokenColorCustomizations": {},
"workbench.colorCustomizations": {
"editorGroup.emptyBackground": "#000000",
"editorGroupHeader.noTabsBackground": "#000000",
"sideBar.background": "#2A2A2E",
"panel.background": "#2A2A2E",
"sideBar.border": "#2A2A2E",
"panel.border": "#2A2A2E",
"editorGroup.border": "#2A2A2E"
},
"workbench.colorTheme": "Firefox Dark",
// Custom CSS path – replace with your local path
"vscode_custom_css.imports": [
"file:///ABSOLUTE/PATH/TO/custom.css"
],
"vscode_custom_css.policy": true
}