Skip to content

Instantly share code, notes, and snippets.

@zenojunior
Last active January 17, 2023 03:03
Show Gist options
  • Select an option

  • Save zenojunior/9fe0d3755d07e35695c844ae30f0d610 to your computer and use it in GitHub Desktop.

Select an option

Save zenojunior/9fe0d3755d07e35695c844ae30f0d610 to your computer and use it in GitHub Desktop.
VSCode Configs
[
{
"key": "shift+alt+right",
"command": "editor.action.indentLines",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+alt+left",
"command": "outdent",
"when": "editorTextFocus && !editorReadonly && !editorTabMovesFocus"
},
{
"key": "ctrl+shift+e",
"command": "-workbench.action.quickOpenNavigatePreviousInFilePicker",
"when": "inFilesPicker && inQuickOpen"
},
{
"key": "ctrl+shift+e",
"command": "-workbench.view.explorer"
},
{
"key": "ctrl+shift+z",
"command": "editor.action.smartSelect.shrink",
"when": "editorTextFocus"
},
{
"key": "shift+alt+left",
"command": "-editor.action.smartSelect.shrink",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+e",
"command": "editor.action.smartSelect.expand",
"when": "editorTextFocus"
},
{
"key": "shift+alt+right",
"command": "-editor.action.smartSelect.expand",
"when": "editorTextFocus"
},
{
"key": "alt+shift+f",
"command": "editor.action.format",
"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"
},
{
"key": "alt+shift+down",
"command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+shift+up",
"command": "editor.action.moveLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+e",
"command": "editor.action.clipboardCutAction",
"when": "editorTextFocus && !editorReadonly"
}
]
{
"workbench.colorTheme": "Dracula",
"workbench.iconTheme": "material-icon-theme",
"workbench.sideBar.location": "left",
"workbench.tree.indent": 22,
"workbench.startupEditor": "newUntitledFile",
"window.zoomLevel": 0,
"editor.tabSize": 2,
"editor.fontSize": 16,
"editor.lineHeight": 26,
"editor.minimap.side": "left",
"editor.minimap.renderCharacters": false,
"todohighlight.isEnable": true,
"todohighlight.keywords": [
{
"text": "TODO:",
"color": "#f1fa8c",
"border": "1px solid #f1fa8c",
"borderRadius": "6px",
"backgroundColor": "rgba(0,0,0,.2)",
}
],
"explorer.compactFolders": false,
"files.autoSave": "off",
"javascript.updateImportsOnFileMove.enabled": "always",
"javascript.preferences.importModuleSpecifier": "relative",
"typescript.preferences.importModuleSpecifier": "relative",
"git.autofetch": true,
"git.confirmSync": false
}
@zenojunior
Copy link
Author

zenojunior commented Jul 1, 2020

%APPDATA%\Code\User\keybindings.json
%APPDATA%\Code\User\settings.json

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment