Created
November 1, 2018 14:21
-
-
Save elliotblackburn/e4c60f72d854779b49b8cbdc71b517e5 to your computer and use it in GitHub Desktop.
VSCode Settings
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
{ | |
// General | |
"editor.fontFamily": "'Dank Mono', Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontSize": 14, | |
"workbench.editor.enablePreview": false, | |
"editor.tabSize": 2, | |
"files.exclude": { | |
"**/.git": false, | |
}, | |
"breadcrumbs.enabled": true, | |
// Temp | |
"typescript.validate.enable": false, | |
// Extensions | |
"workbench.colorTheme": "Night Owl", | |
"bracketPairColorizer.forceIterationColorCycle": true, | |
"window.zoomLevel": 0, | |
// Language specific settings | |
"[markdown]": { | |
// Force wrap at 80 on markdown files | |
"editor.wordWrap": "wordWrapColumn", | |
"editor.wordWrapColumn": 80 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment