-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoctober-2021-insiders-before-terminal-update.jsonc
288 lines (270 loc) · 9.77 KB
/
october-2021-insiders-before-terminal-update.jsonc
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
{
//----------------beginning of editor settings--------------------\\
"editor.comments.ignoreEmptyLines": false,
"editor.trimAutoWhitespace": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.definitionLinkOpensInPeek": true,
"editor.fastScrollSensitivity": 9,
"editor.suggest.shareSuggestSelections": true,
"editor.minimap.enabled": false,
"editor.fontSize": 12,
"editor.fontFamily": "Consolas, 'Courier New', monospace",
"editor.fontWeight": "350",
"editor.letterSpacing": 1.2,
"editor.lineHeight": 26,
"editor.fontLigatures": true,
// The number of spaces a tab is equal to. This setting is overridden based on the file contents when `editor.detectIndentation` is on.
"editor.tabSize": 4,
"editor.detectIndentation": false,
"editor.wordWrap": "on",
"editor.semanticTokenColorCustomizations": {
"[One Dark Pro]": {
// Apply to this theme only
"enabled": true,
"rules": {
"magicFunction:python": "#ee0000",
"function.declaration:python": "#990000",
"*.decorator:python": "#0000dd",
"*.typeHint:python": "#5500aa",
"*.typeHintComment:python": "#aaaaaa"
}
}
},
// Controls whether suggestions should be accepted on commit characters. For example, in JavaScript, the semi-colon (`;`) can be a commit character that accepts a suggestion and types that character.
"editor.acceptSuggestionOnCommitCharacter": true,
// Enable/Disable ActiveFileInStatusBar
// Show fullpath or relative path in status bar.
// Reveal the active file in the file system.
// Controls the delay in ms after which quick suggestions will show up.
"editor.quickSuggestionsDelay": 10,
// Controls if suggestions should automatically show up when typing trigger characters
"editor.suggestOnTriggerCharacters": true,
// Controls if pressing tab inserts the best suggestion and if tab cycles through other suggestions
"editor.tabCompletion": "on",
// Controls whether sorting favours words that appear close to the cursor
"editor.suggest.localityBonus": true,
"editor.suggestSelection": "first",
// Enable word based suggestions
"editor.wordBasedSuggestions": true,
// Enable parameter hints
"editor.parameterHints.enabled": true,
"editor.suggest.showTypeParameters": false,
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"editor.largeFileOptimizations": false,
"editor.renderControlCharacters": true,
"liveServer.settings.donotVerifyTags": true,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.matchBrackets": "always"
},
"editor.cursorBlinking": "smooth",
"editor.acceptSuggestionOnEnter": "off",
"editor.snippetSuggestions": "top",
//---------------------------end of editor--------------------------\\
//!-----------------------------------------------------------------
//------------------beginning of explorer settingsr-----------------\\
"explorer.sortOrder": "type",
"workbench.sideBar.location": "left",
"workbench.activityBar.visible": true,
"workbench.editor.highlightModifiedTabs": true,
"workbench.editorAssociations": {
"*.md": "default",
"*.ipynb": "jupyter-notebook",
"*.zip": "default",
"*.db3": "default",
"*.gif": "cweijan.officeViewer",
"*.ico": "cweijan.officeViewer"
},
//---------------------------end of workbench----------------------\\
//!------------------------------------------------------------
//------------------beginning of extension settingsr---------------\\
"markdown.preview.openMarkdownLinks": "inEditor",
"vsicons.presets.jsOfficial": true,
"settingsSync.ignoredExtensions": ["doi.fileheadercomment"],
//---------------------------end of extensions----------------------\\
//!-------------------------------------------------------------------
//--------------beginning of language-features settingsr------------\\
"javascript.format.insertSpaceAfterConstructor": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": true,
"javascript.format.insertSpaceBeforeFunctionParenthesis": false,
"[javascript]": {
"editor.defaultFormatter": "svipas.prettier-plus"
},
//---markdown---\\
//---typescript---\\
"typescript.format.insertSpaceAfterConstructor": true,
"typescript.format.enable": false,
"typescript.reportStyleChecksAsWarnings": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": true,
//---python---\\
"python.languageServer": "Pylance",
//---emmet---//
"emmet.showSuggestionsAsSnippets": true,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"jsx-sublime-babel-tags": "javascriptreact"
},
"terminal.integrated.fontFamily": "monospace",
//----------------------end of terminal--------------------\\
//!-----------------------------------------------------------------
//--------------beginning of file settings------------\\
"files.exclude": {
"*.a": true,
"*.class": true,
"*.db": false,
"*.dll": true,
"*.dylib": true,
"*.exe": true,
"*.git": false,
"*.idb": true,
"*.ini": true,
"*.o": true,
"*.obj": true,
"*.pdb": true,
"*.pyc": true,
"*.pyo": true,
"*.sdf": true,
"*.so": true,
"*.sublime-workspace": true,
"*.suo": true,
"**__MACOSX": true,
"**_MACOSX": true,
"**/__MACOSX": true,
"**/_MACOSX": true,
"**/.DS_Store": true,
"**/.git": false,
"**/.svn": false,
"**/**.ini": true,
"**/desktop.ini": true,
"*/_MACOSX": true,
"*/**/coverage/": true,
"*/**/infinitewp/": true,
"desktop.ini": true,
"wp-config.*": false,
"xmlrpc.php": true
},
"files.associations": {
"*.m": "matlab",
"*.md": "markdown",
"*.tex": "doctex",
"*.html": "html"
},
"breadcrumbs.filePath": "on",
"files.autoSave": "afterDelay",
"files.insertFinalNewline": true,
"git.allowForcePush": true,
"diffEditor.codeLens": true,
"explorer.confirmDelete": false,
"liveServer.settings.donotShowInfoMsg": true,
"[markdown]": {
"editor.defaultFormatter": "darkriszty.markdown-table-prettify"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.saveConflictResolution": "overwriteFileOnDisk",
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
// "terminal.integrated.profiles.linux": {
// "zsh (login)": {
// "path": "zsh",
// "args": ["-l"]
// }
"terminal.integrated.defaultProfile.windows": "Ubuntu (WSL)",
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell"
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
},
"Git Bash": {
"source": "Git Bash"
},
"C:\\WINDOWS\\System32\\wsl.exe (migrated)": {
"path": "C:\\WINDOWS\\System32\\wsl.exe",
"args": []
},
"JavaScript Debug Terminal": {
"extensionIdentifier": "ms-vscode.js-debug",
"icon": "debug",
"id": "extension.js-debug.debugTerminal",
"title": "JavaScript Debug Terminal"
},
"C:\\Program Files\\PowerShell\\7\\pwsh.exe (migrated)": {
"path": "C:\\Program Files\\PowerShell\\7\\pwsh.exe",
"args": []
}
},
"files.autoSaveDelay": 100,
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.inlineSuggest.enabled": true,
"notebook.cellFocusIndicator": "border",
"notebook.cellToolbarVisibility": "hover",
"notebook.consolidatedRunButton": true,
"notebook.showFoldingControls": "always",
"references.preferredLocation": "view",
"workbench.iconTheme": "material-icon-theme",
"git.enableSmartCommit": true,
"[less]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
// Controls the font size in pixels of the terminal, this defaults to editor.fontSize's value.
"terminal.integrated.fontSize": 10,
// Controls the line height of the terminal, this number is multipled by the terminal font size to get the actual line-height in pixels.
"terminal.integrated.lineHeight": 1.2,
"jupyter.allowUnauthorizedRemoteConnection": true,
"jupyter.changeDirOnImportExport": true,
"jupyter.generateSVGPlots": true,
"jupyter.interactiveWindowMode": "single",
"jupyter.jupyterLab.allowUnauthorizedRemoteConnection": true,
"telemetry.telemetryLevel": "off",
"git.autofetch": true,
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": false,
"markdown": true
},
"workbench.editor.untitled.hint": "hidden",
"workbench.tree.indent": 10,
"tabnine.experimentalAutoImports": true,
"files.maxMemoryForLargeFilesMB": 8000,
"diffEditor.ignoreTrimWhitespace": false,
"editor.dragAndDrop": false,
"editor.minimap.showSlider": "always",
"window.zoomLevel": -1,
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"terminal.external.windowsExec": "C:\\Users\\bryan\\AppData\\Local\\Microsoft\\WindowsApps\\ubuntu.exe"
}