Last active
October 6, 2015 02:13
-
-
Save fjkz/3032683edd911e6e1459 to your computer and use it in GitHub Desktop.
A configuration of Visual Studio Code.
This file contains hidden or 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
// Configurations of Visual Studio Code. | |
{ | |
//-------- Editor configuration -------- | |
// Controls the font family. | |
"editor.fontFamily": "源ノ角ゴシック Code JP", | |
// Controls the font size. | |
"editor.fontSize": 12, | |
// Controls the rendering size of tabs in characters. Accepted values: "auto", 2, 4, 6, etc. If set to "auto", the value will be guessed when a file is opened. | |
"editor.tabSize": 2, | |
// Controls if the editor will insert spaces for tabs. Accepted values: "auto", true, false. If set to "auto", the value will be guessed when a file is opened. | |
"editor.insertSpaces": true, | |
// Controls after how many characters the editor will wrap to the next line. Setting this to 0 turns on viewport width wrapping | |
"editor.wrappingColumn": 80, | |
//-------- Files configuration -------- | |
// When enabled, will trim trailing whitespace when you save a file. | |
"files.trimTrailingWhitespace": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment