Skip to content

Instantly share code, notes, and snippets.

@yonester
Created May 23, 2018 17:36
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 yonester/b25ac3d74bcb196daff887f6df2682cd to your computer and use it in GitHub Desktop.
Save yonester/b25ac3d74bcb196daff887f6df2682cd to your computer and use it in GitHub Desktop.
VSCode Config
{
"workbench.colorTheme": "Base16 Eighties Dark",
"workbench.startupEditor": "none",
"workbench.editor.revealIfOpen": true,
"window.zoomLevel": 0,
"editor.fontFamily": "Ubuntu Mono",
"editor.tokenColorCustomizations": {
"variables": "#d3d0c8ff",
"textMateRules":[
{
"scope": "variable.language.this.js",
"settings": {
"foreground": "#f2777a"
}
}
]
},
"editor.minimap.enabled": false,
"editor.renderWhitespace": "none",
"editor.folding": false,
"editor.rulers": [80],
"editor.lineHeight": 13,
"editor.renderIndentGuides": false,
"guides.active.style": "dotted",
"guides.active.color.dark": "rgba(242, 119, 122, 0.5)",
"guides.normal.style": "dotted",
"guides.stack.style": "dotted",
"editor.tabSize": 2,
"editor.parameterHints": false,
"[markdown]": {
"editor.wordWrap": "wordWrapColumn"
},
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"explorer.confirmDragAndDrop": false,
"javascript.implicitProjectConfig.experimentalDecorators": true,
"files.defaultLanguage": "markdown",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment