Skip to content

Instantly share code, notes, and snippets.

@MikeVelazcoMtz
Created May 18, 2018 17:28
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 MikeVelazcoMtz/3bc55a07c9ebb473f6ac4439725c39af to your computer and use it in GitHub Desktop.
Save MikeVelazcoMtz/3bc55a07c9ebb473f6ac4439725c39af to your computer and use it in GitHub Desktop.
My basic Visual Studio Code Settings File
{
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"editor.minimap.enabled": false,
"editor.scrollBeyondLastLine": false,
"editor.fontSize": 14,
"workbench.colorTheme": "Visual Studio Dark",
"files.trimTrailingWhitespace": true,
"[javascript]": {
"editor.tabSize": 2,
},
"editor.renderIndentGuides": true,
"workbench.colorCustomizations": {
"statusBar.background": "#666666",
"panel.background": "#555555",
"sideBar.background": "#444444",
"editorIndentGuide.activeBackground": "#00ff00"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment