Skip to content

Instantly share code, notes, and snippets.

@medihack
Created November 10, 2020 21:28
Show Gist options
  • Save medihack/0826e851b19b9ea89bdc39c76acccb4e to your computer and use it in GitHub Desktop.
Save medihack/0826e851b19b9ea89bdc39c76acccb4e to your computer and use it in GitHub Desktop.
Visual Studio Code User Settings
{
"git.autofetch": true,
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"python.formatting.provider": "black",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.renderControlCharacters": false,
"editor.renderWhitespace": "none",
"prettier.disableLanguages": ["django-html"],
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"python.languageServer": "Pylance",
"window.zoomLevel": 0,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"vim.leader": ",",
"vim.insertModeKeyBindings": [
{
"before": ["ö", "ö"],
"after": ["<Esc>"]
}
],
"vim.handleKeys": {
"<C-d>": false
},
"remote.extensionKind": {
"ms-azuretools.vscode-docker": "workspace"
},
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["u"],
"after": [],
"commands": [
{
"command": "undo",
"args": []
}
]
},
{
"before": ["<C-r>"],
"after": [],
"commands": [
{
"command": "redo",
"args": []
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment