forked from drwpow/config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
52 lines (52 loc) · 1.87 KB
/
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
{
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.acceptSuggestionOnEnter": "off",
"editor.autoClosingBrackets": "never",
"editor.autoClosingQuotes": "never",
"editor.cursorStyle": "underline",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontFamily": "'JetBrains Mono NL', Papyrus",
"editor.formatOnSave": true,
"editor.largeFileOptimizations": false,
"editor.matchBrackets": "never",
"editor.minimap.enabled": false,
"editor.parameterHints.enabled": false,
"editor.renderWhitespace": "boundary",
"editor.suggestOnTriggerCharacters": false,
"editor.tabSize": 2,
"editor.wordWrap": "off",
"emmet.showExpandedAbbreviation": "never",
"explorer.autoReveal": false,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"explorer.openEditors.visible": 0,
"extensions.ignoreRecommendations": true,
"files.insertFinalNewline": true,
"files.maxMemoryForLargeFilesMB": 8192,
"files.trimTrailingWhitespace": true,
"html.autoClosingTags": false,
"html.autoCreateQuotes": false,
"html.format.enable": false,
"javascript.autoClosingTags": false,
"javascript.updateImportsOnFileMove.enabled": "never",
"scss.completion.triggerPropertyValueCompletion": false,
"security.workspace.trust.enabled": false,
"svelte.enable-ts-plugin": true,
"telemetry.telemetryLevel": "off",
"terminal.external.osxExec": "iTerm.app",
"typescript.autoClosingTags": false,
"typescript.updateImportsOnFileMove.enabled": "always",
"workbench.colorTheme": "Ariake Dark",
"workbench.editor.restoreViewState": false,
"workbench.editor.showIcons": false,
"workbench.startupEditor": "newUntitledFile",
"[astro]": {
"editor.defaultFormatter": "astro-build.astro-vscode"
},
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
},
"[svelte]": {
"editor.defaultFormatter": "svelte.svelte-vscode"
}
}