-
Notifications
You must be signed in to change notification settings - Fork 0
/
vs-code-settings.json
129 lines (116 loc) · 3.94 KB
/
vs-code-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
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
// Alt + Shift + A -----> /* comments */
{
"editor.fontSize": 14,
"editor.tabSize": 4,
"editor.fontFamily": "Fira Code, Operator Mono",
"editor.fontLigatures": true,
"editor.wordWrap": "on",
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 10,
"editor.tokenColorCustomizations": {
"comments": "#3EC70B"
},
/* -------------------------cursor------------------------- */
"editor.cursorSmoothCaretAnimation": "explicit",
"editor.cursorBlinking": "expand",
"editor.cursorStyle": "line",
"editor.cursorWidth": 0,
/* -------------------------config related to code formatting------------------------- */
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.tslint": true,
"source.organizeImports": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[javascript]": {
"editor.formatOnSave": false,
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[javascriptreact]": {
"editor.formatOnSave": false,
"editor.defaultFormatter": null
},
"eslint.alwaysShowStatus": true,
/* -------------------------terminal------------------------- */
"terminal.integrated.defaultProfile.windows": "Git Bash",
"terminal.integrated.fontSize": 13,
"terminal.integrated.fontWeight": "normal",
"terminal.integrated.fontFamily": "monospace",
"workbench.iconTheme": "material-icon-theme",
"workbench.editor.titleScrollbarSizing": "large",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "block",
"terminal.integrated.enableFileLinks": "off",
/* -------------------------terminal customization------------------------- */
"workbench.colorCustomizations": {
"terminal.background": "#262828",
"terminal.foreground": "#ffffff",
"terminalCursor.background": "#15dbe5",
"terminalCursor.foreground": "#c1d812",
"terminal.ansiBlack": "#1D2021",
"terminal.ansiBlue": "#0D6678",
"terminal.ansiBrightBlack": "#665C54",
"terminal.ansiBrightBlue": "#0D6678",
"terminal.ansiBrightCyan": "#8BA59B",
"terminal.ansiBrightGreen": "#95C085",
"terminal.ansiBrightMagenta": "#8F4673",
"terminal.ansiBrightRed": "#FB543F",
"terminal.ansiBrightWhite": "#FDF4C1",
"terminal.ansiBrightYellow": "#3bfa58",
"terminal.ansiCyan": "#0bebe3",
"terminal.ansiGreen": "#06c586",
"terminal.ansiMagenta": "#8F4673",
"terminal.ansiRed": "#FB543F",
"terminal.ansiWhite": "#A89984",
"terminal.ansiYellow": "#f5f514",
"statusBar.background": "#1A1A1A",
"statusBar.noFolderBackground": "#212121",
"statusBar.debuggingBackground": "#263238",
"minimap.background": "#131211",
"tab.activeBackground": "#000000",
// "activityBar.background": "#2c2c54",
// "editorGroupHeader.tabsBackground": "#2c2c54",
// "sideBar.background": "#141422",
// "tab.inactiveBackground": "#191846",
// "scrollbarSlider.background": "#474787",
// "scrollbarSlider.hoverBackground": "#706fd3",
// "editor.selectionBackground": "#e788ff7c",
// "editor.selectionHighlightBackground": "#ff00005b",
// "editor.selectionHighlightBorder": "#fbf300e0",
// "editor.findMatchBackground": "#b911c28f",
// "editor.findMatchHighlightBorder": "#cc1414e0",
"editor.findMatchHighlightBackground": "#0D7377"
},
"window.zoomLevel": 1.4,
"auto-close-tag.activationOnLanguage": [
"xml",
"php",
"blade",
"ejs",
"jinja",
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"plaintext",
"markdown",
"vue",
"liquid",
"erb",
"lang-cfml",
"cfml",
"HTML (EEx)",
"HTML (Eex)",
"plist"
],
"terminal.integrated.localEchoStyle": "dim",
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"liveServer.settings.donotShowInfoMsg": true,
"files.autoSave": "afterDelay"
}