Skip to content

Instantly share code, notes, and snippets.

@BlueHatbRit
Created November 1, 2018 14:21
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 BlueHatbRit/e4c60f72d854779b49b8cbdc71b517e5 to your computer and use it in GitHub Desktop.
Save BlueHatbRit/e4c60f72d854779b49b8cbdc71b517e5 to your computer and use it in GitHub Desktop.
VSCode Settings
{
// 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