Skip to content

Instantly share code, notes, and snippets.

@nataliemarleny
Created March 26, 2019 17:50
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 nataliemarleny/8976c47e6387b9d13a4601aba80459ba to your computer and use it in GitHub Desktop.
Save nataliemarleny/8976c47e6387b9d13a4601aba80459ba to your computer and use it in GitHub Desktop.
VSCode_preferences.json
{
"editor.renderWhitespace": "boundary",
"workbench.colorTheme": "Default High Contrast",
"workbench.editor.tabSizing": "shrink",
"window.zoomLevel": 1,
"explorer.confirmDragAndDrop": false,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"workbench.sideBar.location": "right",
"editor.tabSize": 2,
"indentRainbow.colors": [
"rgba(64,64,16,0.7)",
"rgba(32,64,32,0.7)",
"rgba(64,32,64,0.7)",
"rgba(16,48,48,0.7)",
"rgba(128,32,32,0.7)"
],
"javascript.updateImportsOnFileMove.enabled": "always",
"html.format.enable": true,
"html.format.preserveNewLines": true,
"powermode.presets": "flames",
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.triggerExpansionOnTab": true,
"editor.wordWrap": "on",
"editor.multiCursorModifier": "ctrlCmd",
"editor.fontSize": 16,
"editor.cursorStyle": "line",
"editor.cursorWidth": 3,
"editor.snippetSuggestions": "top",
"editor.minimap.enabled": false,
"workbench.statusBar.visible": true,
"workbench.panel.defaultLocation": "bottom",
"editor.lineNumbers": "on",
"breadcrumbs.enabled": true,
"typescript.validate.enable": false,
"javascript.validate.enable": false,
"files.exclude": {
"**/.DS_Store": false,
"**/.git": false,
"**/.hg": false,
"**/.svn": false,
"**/CVS": false
},
"eslint.packageManager": "yarn"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment