Skip to content

Instantly share code, notes, and snippets.

@GulajavaMinistudio
Created June 1, 2020 06:35
Show Gist options
  • Save GulajavaMinistudio/e587c6ac1c84512a7600620fbce4fbcd to your computer and use it in GitHub Desktop.
Save GulajavaMinistudio/e587c6ac1c84512a7600620fbce4fbcd to your computer and use it in GitHub Desktop.
Backup setting from VS Code and VS Codium via Settings Sync
{
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"enableTelemetry": false,
"extensions.autoUpdate": false,
"workbench.iconTheme": "material-icon-theme",
"editor.minimap.renderCharacters": false,
"editor.suggestSelection": "first",
"editor.fontLigatures": false,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"editor.fontFamily": "'Iosevka Mayukai', 'Iosevka', 'Ubuntu Mono', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"terminal.integrated.fontFamily": "Iosevka Mayukai Term",
"terminal.integrated.fontWeight": "500",
"editor.cursorStyle": "block",
"editor.cursorBlinking": "solid",
"editor.renderWhitespace": "all",
"editor.formatOnSave": true,
"eslint.alwaysShowStatus": true,
// "eslint.autoFixOnSave": true,
"terminal.integrated.rendererType": "dom",
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.wordWrap": "on",
"window.menuBarVisibility": "toggle",
"workbench.colorCustomizations": {
"editorCursor.foreground": "#ff4057",
"terminalCursor.foreground": "#ff4057"
},
"bracket-pair-colorizer-2.colors": [
"#F2AE49",
"#D4BFFF",
"#95e6cb"
],
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.columnSelection": false,
"gruvboxMaterial.darkContrast": "hard",
"gruvboxMaterial.lightContrast": "hard",
"gruvboxMaterial.darkWorkbench": "high-contrast",
"gruvboxMaterial.darkPalette": "mix",
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.fontWeight": "500",
"editor.semanticTokenColorCustomizations": {
"enabled": false
},
"editor.semanticHighlighting.enabled": false,
"workbench.colorTheme": "Mayukai Mirage"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment