Skip to content

Instantly share code, notes, and snippets.

@spilth
Last active January 8, 2018 22:42
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 spilth/acdfa4844f649ea83b86949d55e2467b to your computer and use it in GitHub Desktop.
Save spilth/acdfa4844f649ea83b86949d55e2467b to your computer and use it in GitHub Desktop.
Visual Studio Code Preferences
{
// My eyes are old
"editor.fontSize": 16,
// Save files when they lose focus
"files.autoSave": "onFocusChange",
// Bump up the UI (my eyes are old)
"window.zoomLevel": 1,
// Don't show open editors in Explorer
"explorer.openEditors.visible": 0,
"workbench.activityBar.visible": false,
// Make 'Go to Defintion' (Command + Click on a Symbol) open in a new editor tab instead of replacing/losing the current one
"workbench.editor.enablePreview": false,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/node_modules": true,
"**/.idea": true,
"**/dist": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment