-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathVS Code Script.txt
169 lines (137 loc) · 4.6 KB
/
VS Code Script.txt
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/*================================
VS Code Settings
================================*/
{
"editor.fontSize": 20,
"editor.tabSize": 2,
"editor.wordWrap": "on",
"prettier.proseWrap": "always",
"editor.formatOnSave": true,
"liveServer.settings.CustomBrowser": "chrome:PrivateMode",
"window.zoomLevel": 1,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 10,
"liveServer.settings.donotShowInfoMsg": true,
"workbench.colorTheme": "Andromeda",
"liveServer.settings.donotVerifyTags": true,
"liveSassCompile.settings.formats": [
{
"format": "compressed",
"extensionName": ".min.css",
"savePath": "/css"
}
],
"liveSassCompile.settings.generateMap": false,
"workbench.iconTheme": "material-icon-theme",
"terminal.integrated.defaultProfile.windows": "Git Bash",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#474787",
"editorGroupHeader.tabsBackground": "#2c2c54",
"activityBar.background": "#2c2c54",
"sideBar.background": "#141422",
"minimap.background": "#141422",
"tab.activeBackground": "#706fd3",
"tab.inactiveBackground": "#191846",
"terminal.border": "#2c2c54",
"terminal.background": "#2c2c54",
"statusBar.background": "#474787",
"scrollbarSlider.background": "#474787",
"scrollbarSlider.hoverBackground": "#706fd3",
},
"editor.tokenColorCustomizations": {
"comments": "#d4922f"
},
"editor.linkedEditing": true,
"terminal.integrated.fontSize": 20,
"terminal.integrated.fontWeight": null
}
/* References */
https://code.visualstudio.com/api/references/theme-color
/*================================
VS Code Settings Update 2.0
================================*/
{
"editor.fontFamily": "Operator Mono, Fira Code",
"editor.fontSize": 20,
"editor.tabSize": 2,
"editor.wordWrap": "on",
"editor.cursorSmoothCaretAnimation": true,
"editor.cursorBlinking": "expand",
"prettier.proseWrap": "always",
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"workbench.colorCustomizations": {
"editorGroupHeader.tabsBackground": "#2c2c54",
"activityBar.background": "#2c2c54",
"sideBar.background": "#141422",
"minimap.background": "#141422",
"tab.activeBackground": "#706fd3",
"tab.inactiveBackground": "#191846",
"terminal.border": "#2c2c54",
"terminal.background": "#2c2c54",
"statusBar.background": "#474787",
"scrollbarSlider.background": "#474787",
"scrollbarSlider.hoverBackground": "#706fd3"
},
"editor.tokenColorCustomizations": {
"comments": "#d4922f"
},
"editor.linkedEditing": true,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"editor.guides.bracketPairsHorizontal": true,
"editor.hover.enabled": false,
"window.zoomLevel": 1,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 10,
"liveServer.settings.CustomBrowser": "chrome:PrivateMode",
"liveServer.settings.donotShowInfoMsg": true,
"liveServer.settings.donotVerifyTags": true,
"liveSassCompile.settings.formats": [
{
"format": "compressed",
"extensionName": ".min.css",
"savePath": "/css"
}
],
"liveSassCompile.settings.generateMap": false,
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Andromeda",
"workbench.editor.enablePreview": false,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"terminal.integrated.fontSize": 20,
"terminal.integrated.fontWeight": null,
"diffEditor.wordWrap": "on",
"bracketPairColorizer.depreciation-notice": false,
"security.workspace.trust.untrustedFiles": "open"
}
/*================================
VS Code Extention
================================*/
01. Auto Close Tag
02. Auto Rename Tag
03. Bracket Pair Colorizer
04. Debugger for Chrome
05. HTML CSS Support
06. JavaScript (ES6) code snippets
07. Live Server
08. Live Sass Compiler
09. Material Icon Theme
10. Prettier - Code formatter
11. WordPress Snippets
12. Simple React Snippets
/*================================
VS Code Themes
================================*/
01. Andromeda
02. Dracula Official
03. Night Owl
04. Shades of Purple
05. SynthWave '84
06. Ayu (Theme)