Created
July 23, 2020 05:33
-
-
Save lohithn4/0190bc2d4748999e5f9b5884bd1d3680 to your computer and use it in GitHub Desktop.
Visual studio code basic settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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