Skip to content

Instantly share code, notes, and snippets.

@ehansen31
Last active September 27, 2017 02:02
Show Gist options
  • Save ehansen31/2c48e75b655d1ef3168fac90b14b66bb to your computer and use it in GitHub Desktop.
Save ehansen31/2c48e75b655d1ef3168fac90b14b66bb to your computer and use it in GitHub Desktop.
vscode settings
// Place your settings in this file to overwrite the default settings
{
// Controls the font size in pixels.
"editor.fontSize": 18,
// Controls auto save of dirty files. Accepted values: "off", "afterDelay", "onFocusChange" (editor loses focus), "onWindowChange" (window loses focus). If set to "afterDelay", you can configure the delay in "files.autoSaveDelay".
"files.autoSave": "afterDelay",
// Controls the delay in ms after which a dirty file is saved automatically. Only applies when "files.autoSave" is set to "afterDelay"
"files.autoSaveDelay": 1,
// Controls if lines should wrap. The lines will wrap at min(editor.wrappingColumn, viewportWidthInColumns).
"editor.wordWrap": "on",
// Controls after how many characters the editor will wrap to the next line. Setting this to 0 turns on viewport width wrapping (word wrapping). Setting this to -1 forces the editor to never wrap.
"editor.wordWrapColumn": 0,
// "workbench.iconTheme": null,
"git.enableSmartCommit": true,
"editor.minimap.enabled": false,
"workbench.colorTheme": "Solarized Dark"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment