Skip to content

Instantly share code, notes, and snippets.

@lohithn4
Created July 23, 2020 05:33
Show Gist options
  • Save lohithn4/0190bc2d4748999e5f9b5884bd1d3680 to your computer and use it in GitHub Desktop.
Save lohithn4/0190bc2d4748999e5f9b5884bd1d3680 to your computer and use it in GitHub Desktop.
Visual studio code basic settings
{
"editor.formatOnSave": true,
"editor.autoIndent": "advanced",
"editor.detectIndentation": true,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"editor.formatOnPaste": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.rulers": [
{
"column": 79,
"color": "#424142"
},
100, // <- a ruler in the default color or as customized at column 0
{
"column": 120,
"color": "#ff0000"
},
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment