forked from the-dvlpr/vscode-dvlpr-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.temp-settings.json
54 lines (54 loc) · 1.66 KB
/
.temp-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
{
"workbench.colorTheme": "DVLPR",
"workbench.colorCustomizations": {
"activityBar.background": "#0c0c0c",
"editor.background": "#000000",
"editorGroupHeader.tabsBackground": "#0c0c0c",
"tab.inactiveBackground": "#000000",
"tab.activeBackground": "#111111",
"sideBar.background": "#050505",
"sideBarSectionHeader.background": "#111111",
"list.hoverBackground": "#22283b",
"terminal.foreground": "#c8c8c8",
"panelTitle.activeBorder": "#00fffb",
"statusBar.background": "#111111",
"statusBar.noFolderBackground": "#111111",
"statusBar.debuggingBackground": "#111111"
},
"editor.tokenColorCustomizations": {
"functions": "#ff0bff",
"keywords": "#ff0d86",
"strings": "#00f693",
"numbers": "#faef00",
"types": "#00fffb"
},
"editor.fontSize": 16,
"editor.formatOnSave": true,
"editor.minimap.enabled": false,
"editor.tabSize": 2,
"editor.wordWrap": "on",
"emmet.includeLanguages": {
"erb": "html",
"yml": "yml"
},
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"files.associations": {
"*.erb": "erb",
"*.rb": "ruby"
},
"html.format.contentUnformatted": "pre,code,textarea,style",
"terminal.integrated.fontSize": 16,
"terminal.integrated.rendererType": "dom",
"window.zoomLevel": 1,
"workbench.editor.enablePreview": false,
"workbench.sideBar.location": "left",
"workbench.startupEditor": "newUntitledFile",
"workbench.statusBar.visible": true,
"ruby.linter.run": "onType",
"ruby.format": "standard",
"workbench.editor.enablePreviewFromQuickOpen": false,
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
}
}