Skip to content

Instantly share code, notes, and snippets.

@walkingriver
Last active September 12, 2017 16:31
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 walkingriver/a2ff05a3fe4ba369746f90b3e8dfe76c to your computer and use it in GitHub Desktop.
Save walkingriver/a2ff05a3fe4ba369746f90b3e8dfe76c to your computer and use it in GitHub Desktop.
My user.settings for Visual Studio Code
// Place your settings in this file to overwrite the default settings
{
"editor.fontFamily": "Roboto Mono, Consolas",
"editor.fontSize": 16,
"editor.minimap.enabled": false,
// The number of spaces a tab is equal to.
"editor.tabSize": 2,
"editor.wordWrapColumn": 120,
"editor.wordWrap": "bounded",
"editor.renderIndentGuides": false,
// Migrated from previous "File | Auto Save" setting:
"files.autoSave": "onFocusChange",
// Configure glob patterns for excluding files and folders.
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"node_modules": false,
"dist": true,
"bower_components": false
},
"html.format.wrapLineLength": 120,
// Configures if the built-in HTML language suggests Angular V1 tags and properties.
"html.suggest.angular1": true,
// Configures if the built-in HTML language suggests Ionic tags, properties and values.
"html.suggest.ionic": true,
// Configures if the built-in HTML language suggests HTML5 tags, properties and values.
"html.suggest.html5": true,
"workbench.colorTheme": "Default Light+",
"window.nativeTabs": false,
"window.zoomLevel": 0,
"workbench.startupEditor": "newUntitledFile"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment