We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a723e8e commit 3462908Copy full SHA for 3462908
packages/app/src/app/overmind/effects/vscode/initializers.ts
@@ -59,6 +59,12 @@ export function initializeSettings() {
59
settings['typescript.autoClosingTags'] = false;
60
settings['typescript.tsserver.useSeparateSyntaxServer'] = false;
61
62
+ if (!settings['workbench.colorTheme']) {
63
+ // if you have not changed the theme ever,
64
+ // we set codesandbox black as the theme for you
65
+ settings['workbench.colorTheme'] = 'CodeSandbox Black';
66
+ }
67
+
68
fs.writeFileSync(
69
'/vscode/settings.json',
70
JSON.stringify(settings, null, 2)
0 commit comments