Skip to content

Instantly share code, notes, and snippets.

@ferventcoder
Last active May 4, 2016 20:06
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 ferventcoder/51da009f570f1dbea36f539be6b38a4c to your computer and use it in GitHub Desktop.
Save ferventcoder/51da009f570f1dbea36f539be6b38a4c to your computer and use it in GitHub Desktop.
Visual Studio Code User Settings
// Place your settings in this file to overwrite the default settings
{
// The default end of line character.
"files.eol": "\n",
// When enabled, will trim trailing whitespace when you save a file.
"files.trimTrailingWhitespace": true,
// Controls auto save of dirty files. Accepted values: "off", "afterDelay", "onFocusChange". If set to "afterDelay" you can configure the delay in "files.autoSaveDelay".
"files.autoSave": "onFocusChange",
// Whether auto fetching is enabled.
"git.autofetch": false,
// Columns at which to show vertical rulers
"editor.rulers": [50, 72, 80, 120],
// The number of spaces a tab is equal to.
"editor.tabSize": 2,
// Enable usage data and errors to be sent to Microsoft.
"telemetry.enableTelemetry": false,
// Enable crash reports to be sent to Microsoft.
// This option requires restart to take effect.
"telemetry.enableCrashReporter": false,
"files.insertFinalNewline": true,
// Configure file associations to languages (e.g. "*.extension": "html"). These have precedence over the default associations of the languages installed.
"files.associations": {
"Vagrantfile": "ruby",
"*.pp":"puppet"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment