Created
May 23, 2018 17:36
-
-
Save yonester/b25ac3d74bcb196daff887f6df2682cd to your computer and use it in GitHub Desktop.
VSCode Config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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