Skip to content

Instantly share code, notes, and snippets.

@dumpofmemory
Last active July 20, 2020 11:54
Show Gist options
  • Save dumpofmemory/29c84f9b8f3306facbd58d338da55201 to your computer and use it in GitHub Desktop.
Save dumpofmemory/29c84f9b8f3306facbd58d338da55201 to your computer and use it in GitHub Desktop.
Vscode user settings
{
"window.zoomLevel": 0,
"atomKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"workbench.colorTheme": "Dark++ Italic",
"workbench.startupEditor": "newUntitledFile",
"files.associations": {
"Dockerfile.*": "dockerfile"
},
"editor.tabSize": 2,
"[javascript]": {
"editor.formatOnSave": false
},
"[javascriptreact]": {
"editor.formatOnSave": false
},
"[typescript]": {
"editor.formatOnSave": false
},
"[typescriptreact]": {
"editor.formatOnSave": false
},
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"html",
],
"workbench.iconTheme": "vscode-icons",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"[python]": {},
"vsicons.dontShowNewVersionMessage": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.fontFamily": "Operator Mono Lig",
"editor.fontLigatures": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment