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
| { "editor.quickSuggestions": { "other": false, "comments": false, "strings": false }, "editor.suggest.snippetsPreventQuickSuggestions": false, "editor.acceptSuggestionOnCommitCharacter": false, "editor.suggestOnTriggerCharacters": false, "editor.wordBasedSuggestions": false, "editor.fontFamily": "Courier New", "editor.fontSize": 18, "editor.selectionHighlight": false, "editor.renderLineHighlight": "none", "editor.wordWrap": "on", "files.associations": { "*.cjson": "jsonc", "*.wxss": "css", "*.wxs": "javascript" }, "emmet.includeLanguages": { "wxml": "html" }, "workbench.colorTheme": "Base16 Tomorrow Dark", "editor.codeLens": false, "editor.colorDecorators": false, "editor.highlightActiveIndentGuide": false, "editor.folding": true, "editor.renderIndentGuides": false, "editor.hover.delay": 1000, "workbench.startupEditor": "newUntitledFile", "terminal.integrated.fontSize": 14, "terminal.integrated.lineHeight": 1.2, "workbench.colorCustomizations": { "editor.background": "#000000" }, "typescript.updateImportsOnFileMove.enabled": "always", "workbench.editor.enablePreview": false, "window.zoomLevel": 0, "breadcrumbs.enabled": true, "editor.minimap.enabled": false, "javascript.updateImportsOnFileMove.enabled": "always", "terminal.integrated.rendererType": "dom", "update.enableWindowsBackgroundUpdates": false, "extensions.autoUpdate": false }
|