Skip to content

Instantly share code, notes, and snippets.

@tomraithel
Last active February 22, 2016 14:10
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 tomraithel/8209c4f97cb860e22df8 to your computer and use it in GitHub Desktop.
Save tomraithel/8209c4f97cb860e22df8 to your computer and use it in GitHub Desktop.
Personal Visual Studio Code Settings & Keybindings
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "alt+down",
"command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus"
},
{
"key": "alt+up",
"command": "editor.action.moveLinesUpAction",
"when": "editorTextFocus"
},
{
"key": "cmd+d",
"command": "editor.action.deleteLines",
"when": "editorTextFocus"
},
{
"key": "alt+cmd+down",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus"
},
{
"key": "alt+cmd+up",
"command": "editor.action.copyLinesUpAction",
"when": "editorTextFocus"
},
{
"key": "cmd+shift+c",
"command": "editor.action.commentLine",
"when": "editorTextFocus"
},
{
"key": "ctrl+g",
"command": "editor.action.addSelectionToNextFindMatch",
"when": "editorTextFocus"
},
{
"key": "cmd+alt+l",
"command": "editor.action.format",
"when": "editorTextFocus"
},
]
// Place your settings in this file to overwrite the default settings
{
"editor.fontSize": 14,
"editor.lineHeight": 22,
"editor.renderWhitespace": true,
"files.trimTrailingWhitespace": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment