Skip to content

Instantly share code, notes, and snippets.

@hirontweet
Last active October 29, 2016 10:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hirontweet/a1a1034fa9ad00aa90807cc73453647f to your computer and use it in GitHub Desktop.
Save hirontweet/a1a1034fa9ad00aa90807cc73453647f to your computer and use it in GitHub Desktop.
Visual Studio Code Sync Settings GIST
{"lastUpload":"2016-10-29T10:06:18.624Z"}
[
{
"metadata": {
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd",
"publisherId": "ac3a3342-db76-40ef-9277-4657632d3bfe",
"publisherDisplayName": "Shan Khan"
},
"name": "code-settings-sync",
"publisher": "Shan",
"version": "2.3.3"
},
{
"metadata": {
"id": "be992f3f-9f22-4b66-a1d2-ecad04c28a28",
"publisherId": "7fe357ee-5480-4a7d-a4e9-009d9438c2a3",
"publisherDisplayName": "Mohamed Abusaid"
},
"name": "html-snippets",
"publisher": "abusaidm",
"version": "0.0.18"
},
{
"metadata": {
"id": "f1f59ae4-9318-4f3c-a9b5-81b2eaa5f8a5",
"publisherId": "1ba8bd00-2ad1-4be0-a007-5b4b954c1ee7",
"publisherDisplayName": "Don Jayamanne"
},
"name": "python",
"publisher": "donjayamanne",
"version": "0.5.0"
}
]
// 既定値を上書きするには、このファイル内にキー バインドを挿入します
[
{ "key": "alt+t", "command": "workbench.action.terminal.toggleTerminal" },
{ "key": "alt+s", "command": "workbench.action.splitEditor" },
// Cursor Key-binding
{ "key": "ctrl+k", "command": "cursorDown",
"when": "editorTextFocus" },
{ "key": "ctrl+j", "command": "cursorLeft",
"when": "editorTextFocus" },
{ "key": "ctrl+l", "command": "cursorRight",
"when": "editorTextFocus" },
{ "key": "ctrl+i", "command": "cursorUp",
"when": "editorTextFocus" }
]
// 既定の設定を上書きするには、このファイル内に設定を挿入します
{
// フォント サイズをピクセル単位で制御します。
"editor.fontSize": 18,
// 端末が Windows で使用するシェルのパス。Windows に付属のシェル (cmd、PowerShell、または Bash on Ubuntu) を使用する場合、64 ビット バージョンを使用するには、C:WindowsSystem32 ではなく、C:Windowssysnative を選びます。
"terminal.integrated.shell.windows": "\\windows\\system32\\WindowsPowerShell\\v1.0\\powershell.exe",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment