Skip to content

Instantly share code, notes, and snippets.

@jonchretien
Last active June 30, 2020 20:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonchretien/b50044d4adf151edfebe8232897f9de5 to your computer and use it in GitHub Desktop.
Save jonchretien/b50044d4adf151edfebe8232897f9de5 to your computer and use it in GitHub Desktop.
cmd+shift+p > Preferences: Open Settings (JSON)
// Place your settings in this file to overwrite the default settings
{
// Controls the font family.
"editor.fontFamily": "Operator Mono",
// Controls the font size in pixels.
"editor.fontSize": 24,
"editor.formatOnPaste": false,
"editor.minimap.enabled": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.triggerExpansionOnTab": true,
"eslint.validate": ["javascript", "javascriptreact","typescript", "typescriptreact"],
// save files when editor loses focus
"files.autoSave": "onFocusChange",
// Configure glob patterns for excluding files and folders.
"files.exclude": {
"bower_components": true,
"node_modules": true
},
"multiCommand.commands": [
{
"command": "multiCommand.makeRoom",
"sequence": [
"workbench.action.toggleSidebarVisibility",
"workbench.action.toggleActivityBarVisibility"
]
}
],
"prettier.singleQuote": true,
"prettier.trailingComma": "es5",
"[markdown]": {
"editor.formatOnSave": true,
"editor.wordWrap": "on",
"editor.renderWhitespace": "all",
"editor.acceptSuggestionOnEnter": "off"
},
"[javascript]": {
"editor.formatOnSave": true
},
"[javascriptreact]": {
"editor.formatOnSave": true
},
"[typescript]": {
"editor.formatOnSave": true
},
"[typescriptreact]": {
"editor.formatOnSave": true
},
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"window.zoomLevel": 0,
"workbench.activityBar.visible": false,
"workbench.colorTheme": "Material Theme",
"workbench.iconTheme": "eq-material-theme-icons",
"workbench.startupEditor": "newUntitledFile",
"workbench.statusBar.visible": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment