Last active
April 6, 2018 01:26
-
-
Save ishisaka/1e18f2783abb62f7e0ca279016dfa2ca to your computer and use it in GitHub Desktop.
Visual Studio Code setting.json
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
// Place your settings in this file to overwrite the default settings | |
{ | |
// Controls the font family. | |
"editor.fontFamily": "MyricaM M", | |
// フォント サイズをピクセル単位で制御します。 | |
"editor.fontSize": 16, | |
// エディターで空白文字を表示する方法を制御します。'none'、'boundary' および 'all' が使用可能です。'boundary' オプションでは、単語間の単一スペースは表示されません。 | |
"editor.renderWhitespace": "all", | |
// 等幅フォントの特定番号の後ろに垂直ルーラーを表示します。複数のルーラーには複数の値を使用します。配列が空の場合はルーラーを表示しません。 | |
"editor.rulers": [80, 132], | |
// 制御文字列(タブなど)を表示する | |
"editor.renderControlCharacters": true, | |
"editor.wordWrap": "on", | |
//最終行に改行を追加 | |
"files.insertFinalNewline": true | |
// A list of URLs or local paths to CSS style sheets to use from the markdown preview. | |
"markdown.styles": [ | |
"file://c:/users/jptais1/md.css" | |
], | |
//--------- Workbench -------------- | |
"workbench.colorCustomizations" : { | |
// 制御文字列(タブなど)を含め半角空白の色を明るい灰色( "#aaa" )に指定します。 | |
"editorWhitespace.foreground": "#aaa", | |
}, | |
//-------- Integrated terminal configuration -------- | |
// The path of the shell that the terminal uses on Linux. | |
"terminal.integrated.shell.linux": "sh", | |
// The path of the shell that the terminal uses on OS X. | |
"terminal.integrated.shell.osx": "sh", | |
// The path of the shell that the terminal uses on Windows. | |
"terminal.integrated.shell.windows": "cmd.exe", | |
// The font family used by the terminal (CSS font-family format). | |
"terminal.integrated.fontFamily": "MyricaM M", | |
//Python | |
"python.linting.enabled": true, | |
"python.linting.lintOnSave": true, | |
"workbench.colorTheme": "Monokai Dimmed", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment