Skip to content

Instantly share code, notes, and snippets.

@KKrisu
Created November 20, 2017 20:45
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 KKrisu/bb9f45f6e1d70d859d9c309965aae5c3 to your computer and use it in GitHub Desktop.
Save KKrisu/bb9f45f6e1d70d859d9c309965aae5c3 to your computer and use it in GitHub Desktop.
VS Code settings
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "ctrl+e", "command": "editor.action.deleteLines",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "alt+up", "command": "editor.action.insertCursorAbove",
"when": "editorTextFocus" },
{ "key": "alt+down", "command": "editor.action.insertCursorBelow",
"when": "editorTextFocus" },
{ "key": "alt+shift+up", "command": "editor.action.moveLinesUpAction",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "alt+shift+down", "command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "ctrl+shift+down", "command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "ctrl+shift+up", "command": "editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly" }
]
// Place your settings in this file to overwrite the default settings
{
"files.trimTrailingWhitespace": true,
"editor.tabSize": 2,
"workbench.colorTheme": "Jo Light",
"editor.minimap.enabled": false,
"editor.dragAndDrop": true,
"window.zoomLevel": 0,
"editor.multiCursorModifier": "ctrlCmd"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment