VSCodium settings.json file
0
settings.json edited
36 lines 1.5 kB view raw
1{ 2 "json.schemaDownload.trustedDomains": { 3 "https://schemastore.azurewebsites.net/": true, 4 "https://raw.githubusercontent.com/microsoft/vscode/": true, 5 "https://raw.githubusercontent.com/devcontainers/spec/": true, 6 "https://www.schemastore.org/": true, 7 "https://json.schemastore.org/": true, 8 "https://json-schema.org/": true, 9 "https://developer.microsoft.com/json-schemas/": true, 10 "https://biomejs.dev": true 11 }, 12 "editor.fontFamily": "'maple mono nf', 'maplemono nf', 'maple mono nf cn', 'Droid Sans Mono', monospace", 13 "files.autoSave": "onFocusChange", 14 "editor.codeActionsOnSave": { 15 "source.fixAll.biome": "always" 16 }, 17 "terminal.integrated.initialHint": false, 18 "workbench.settings.showAISearchToggle": false, 19 "workbench.iconTheme": "vscode-jetbrains-icon-theme-2023-dark", 20 "git.autofetch": true, 21 "workbench.sideBar.location": "right", 22 "window.commandCenter": false, 23 "workbench.colorTheme": "WebStorm New Dark", 24 "[typescript]": { 25 "editor.defaultFormatter": "biomejs.biome" 26 }, 27 "workbench.productIconTheme": "jetbrains-idea-product-icon-theme", 28 "biome.requireConfiguration": true, 29 "diffEditor.ignoreTrimWhitespace": false, 30 "git.confirmSync": false, 31 "breadcrumbs.enabled": false, 32 "editor.padding.bottom": 8, 33 "editor.inlayHints.padding": true, 34 "editor.padding.top": 8, 35 "editor.formatOnSave": true 36}