Skip to content

Instantly share code, notes, and snippets.

@panicbit
Last active May 10, 2019 15:00
Show Gist options
  • Save panicbit/2c9f9a63e1e7074538ec67eb9183ccda to your computer and use it in GitHub Desktop.
Save panicbit/2c9f9a63e1e7074538ec67eb9183ccda to your computer and use it in GitHub Desktop.
VSCode Settings
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+tab",
"command": "workbench.action.nextEditor"
},
{
"key": "ctrl+pagedown",
"command": "-workbench.action.nextEditor"
},
{
"key": "ctrl+tab",
"command": "-workbench.action.openNextRecentlyUsedEditorInGroup"
},
{
"key": "ctrl+tab",
"command": "-workbench.action.quickOpenNavigateNext",
"when": "inQuickOpen"
},
{
"key": "ctrl+shift+tab",
"command": "-workbench.action.openPreviousRecentlyUsedEditorInGroup"
},
{
"key": "ctrl+shift+tab",
"command": "workbench.action.previousEditor"
},
{
"key": "ctrl+pageup",
"command": "-workbench.action.previousEditor"
},
{
"key": "ctrl+7",
"command": "editor.action.commentLine"
},
{
"key": "ctrl+shift+7",
"command": "editor.action.blockComment",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+a",
"command": "-editor.action.blockComment",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+r",
"command": "fileutils.renameFile",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+d",
"command": "-editor.action.copyLinesDownAction",
"when": "editorFocus"
}
]
// Platzieren Sie Ihre Einstellungen in dieser Datei, um die Standardeinstellungen zu überschreiben.
{
"git.enabled": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.minimap.enabled": false,
"editor.mouseWheelZoom": true,
"editor.snippetSuggestions": "top",
"editor.fontSize": 20,
"editor.fontFamily": "Hack",
"editor.formatOnSave": false,
"editor.folding": false,
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"workbench.activityBar.visible": false,
"window.menuBarVisibility": "toggle",
"workbench.colorTheme": "1337",
"workbench.iconTheme": "material-icon-theme",
"explorer.confirmDragAndDrop": false,
"keyboard.dispatch": "keyCode",
"workbench.statusBar.feedback.visible": false,
"window.title": "${dirty}${activeEditorShort}${separator}${rootName}",
"workbench.startupEditor": "none",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment