Skip to content

Instantly share code, notes, and snippets.

@jdthorpe
Last active January 10, 2020 01:48
Show Gist options
  • Save jdthorpe/6480d34ca738baedb3b4ef1a04cdfc5e to your computer and use it in GitHub Desktop.
Save jdthorpe/6480d34ca738baedb3b4ef1a04cdfc5e to your computer and use it in GitHub Desktop.
vscode settings
[
{
"key": "ctrl+h",
"command": "workbench.action.focusPreviousGroup"
},
{
"key": "ctrl+l",
"command": "workbench.action.focusNextGroup"
},
{
"key": "ctrl+j",
"command": "workbench.action.nextEditorInGroup"
},
{
"key": "ctrl+k",
"command": "workbench.action.previousEditorInGroup"
},
{
"key": "alt+1",
"command": "editor.action.removeCommentLine"
},
{
"key": "alt+4",
"command": "editor.action.addCommentLine"
}
]
{
"[python]": {
"editor.formatOnSave": true
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.tabSize": 4
},
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [
"r"
],
"after": [],
"commands": [
{
"command": "redo"
}
]
},
{
"before": [
"u"
],
"after": [],
"commands": [
{
"command": "undo"
}
]
},
{
"before": [
"<leader>",
"p"
],
"commands": [
{
"command": "editor.action.formatDocument"
}
]
}
],
"prettier.tabWidth": 4,
//https://code.visualstudio.com/docs/python/editing
"python.formatting":{
"proider": "black"
},
"[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment