Skip to content

Instantly share code, notes, and snippets.

@euhmeuh
Created October 9, 2018 08:15
Show Gist options
  • Save euhmeuh/0309d43f8f5c3f4b33231d79ffcef150 to your computer and use it in GitHub Desktop.
Save euhmeuh/0309d43f8f5c3f4b33231d79ffcef150 to your computer and use it in GitHub Desktop.
VSCode Settings
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+shift+d",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+down",
"command": "-editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+d",
"command": "-workbench.view.debug"
},
{
"key": "ctrl+shift+up",
"command": "editor.action.moveLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+up",
"command": "-editor.action.moveLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+down",
"command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+down",
"command": "-editor.action.moveLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+backspace",
"command": "workbench.action.navigateBack"
},
{
"key": "ctrl+backspace",
"command": "-workbench.action.terminal.deleteWordLeft",
"when": "terminalFocus"
},
{
"key": "ctrl+backspace",
"command": "-deleteWordLeft",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "ctrl+shift+backspace",
"command": "workbench.action.navigateForward"
},
{
"key": "ctrl+8",
"command": "-workbench.action.navigateForward"
}
]
{
"telemetry.enableTelemetry": false,
"gitlens.advanced.telemetry.enabled": false,
"telemetry.enableCrashReporter": false,
"workbench.enableExperiments": false,
"workbench.settings.enableNaturalLanguageSearch": false,
"update.channel": "none",
"update.enableWindowsBackgroundUpdates": false,
"update.showReleaseNotes": false,
"extensions.autoCheckUpdates": false,
"extensions.autoUpdate": false,
"npm.fetchOnlinePackageInfo": false,
"editor.fontFamily": "'Fira Code','Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"editor.fontLigatures": true,
"editor.renderWhitespace": "all",
"editor.multiCursorModifier": "ctrlCmd",
"editor.insertSpaces": true,
"window.title": "${dirty}${rootName}${separator}${activeEditorShort}${separator}${appName}",
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"editor.rulers": [
100
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment