-
Notifications
You must be signed in to change notification settings - Fork 0
/
vscode-settings.json
73 lines (73 loc) · 2.71 KB
/
vscode-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
// VS Code user settings (defaults are an empty file)
{
"security.workspace.trust.untrustedFiles": "open",
// Disable usage data collection and crash reporting
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
// Follow system preference for light/dark theme/appearance.
"window.autoDetectColorScheme": true,
"workbench.colorTheme": "Atom One Light",
"workbench.preferredDarkColorTheme": "Atom One Dark",
"workbench.preferredLightColorTheme": "Atom One Light",
// Keep tabs open
"workbench.editor.enablePreviewFromQuickOpen": false,
// Close tabs left-to-right
"workbench.editor.focusRecentEditorAfterClose": false,
// Open to a new file instead of welcome page
"workbench.startupEditor": "newUntitledFile",
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
// Text editing
"editor.tabCompletion": "on",
"editor.tabSize": 2,
"editor.renderWhitespace": "boundary",
"editor.wordWrap": "on",
"editor.formatOnSave": true,
"editor.minimap.enabled": false,
"editor.suggest.showWords": false,
"editor.fontSize": 11,
// Show brief animation on page up/down
"editor.smoothScrolling": true,
// Zen Mode
"zenMode.fullScreen": false,
"zenMode.restore": false,
"zenMode.centerLayout": false,
// Files
"files.trimTrailingWhitespace": true,
// Setting files.insertFinalNewline to true also covers what html.format.endWithNewline would do for HTML.
"files.insertFinalNewline": true,
// Setting files.autoGuessEncoding to true (false by default) caused simple UTF-8 files to be opened as Windows-1252.
// HTML
// Setting html.format.wrapLineLength to 0 disables the strange hard wrapping at 120 characters by default.
"html.format.wrapLineLength": 0,
// Default language formatters
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[css]": {
"editor.defaultFormatter": "vscode.css-language-features"
},
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[markdown]": {
"editor.defaultFormatter": "vscode.markdown-language-features"
},
"[php]": {
"editor.defaultFormatter": "vscode.php-language-features"
},
// Extension: Prettier -- only run in folders with a config file to avoid reformatting "non-Prettier projects." https://prettier.io/docs/en/configuration.html
"prettier.requireConfig": true,
}