Skip to content

Instantly share code, notes, and snippets.

@samlovescoding
Last active July 22, 2022 20:17
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 samlovescoding/c30d01a305aa40b451ba710fd42c4d2f to your computer and use it in GitHub Desktop.
Save samlovescoding/c30d01a305aa40b451ba710fd42c4d2f to your computer and use it in GitHub Desktop.
VS Code Config
// Place your key bindings in this file to override the defaults
[
{
"key": "ctrl+n",
"command": "explorer.newFile"
},
{
"key": "ctrl+shift+n",
"command": "explorer.newFolder"
},
{
"key": "ctrl+shift+tab",
"command": "workbench.action.previousEditor"
},
{
"key": "ctrl+tab",
"command": "workbench.action.nextEditor"
},
{
"key": "ctrl+shift+u",
"command": "editor.action.transformToUppercase",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+l",
"command": "editor.action.transformToLowercase",
"when": "editorTextFocus"
},
{
"key": "ctrl+1",
"command": "workbench.view.explorer",
"when": "viewContainer.workbench.view.explorer.enabled"
},
{
"key": "ctrl+2",
"command": "workbench.action.findInFiles",
"when": "workbench.view.search.active && neverMatch =~ /doesNotMatch/"
},
{
"key": "ctrl+3",
"command": "workbench.view.scm",
"when": "workbench.scm.active"
},
{
"key": "ctrl+4",
"command": "workbench.view.extensions",
"when": "viewContainer.workbench.view.extensions.enabled"
}
]
{
"workbench.colorTheme": "Dracula",
"window.titleBarStyle": "custom",
"workbench.sideBar.location": "right",
"breadcrumbs.enabled": false,
"editor.minimap.enabled": false,
"editor.fontFamily": "'Fira Code', 'Droid Sans Mono', 'monospace', monospace",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.lineHeight": 1.6,
"terminal.integrated.fontSize": 12,
"terminal.integrated.lineHeight": 1,
"terminal.integrated.sendKeybindingsToShell": true,
"workbench.startupEditor": "none",
"workbench.editor.enablePreview": false,
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"security.workspace.trust.untrustedFiles": "open",
"explorer.confirmDragAndDrop": false,
"editor.linkedEditing": true,
"html.autoClosingTags": true,
"javascript.autoClosingTags": true,
"typescript.autoClosingTags": true,
"emmet.excludeLanguages": [],
"emmet.includeLanguages": {
"markdown": "html",
"vue-html": "html",
"javascript": "javascriptreact"
},
"window.title": "${dirty}${separator}${rootName}${separator}${activeEditorMedium}",
"explorer.confirmDelete": false,
"redhat.telemetry.enabled": false,
"[xml]": {
"editor.defaultFormatter": "redhat.vscode-xml"
},
"[python]": {
"editor.defaultFormatter": "ms-python.python"
},
"typescript.updateImportsOnFileMove.enabled": "always"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment