Skip to content

Instantly share code, notes, and snippets.

@assafmo
Last active September 25, 2017 20:34
Show Gist options
  • Save assafmo/6680036c367f857120f44d2c99131f21 to your computer and use it in GitHub Desktop.
Save assafmo/6680036c367f857120f44d2c99131f21 to your computer and use it in GitHub Desktop.
vscode settings
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+d",
"command": "editor.action.deleteLines",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+f",
"command": "editor.action.formatDocument",
"when": "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+1",
"command": "editor.action.quickFix",
"when": "editorTextFocus"
},
{
"key": "ctrl+f3",
"command": "editor.action.addSelectionToNextFindMatch",
"when": "editorFocus"
},
{
"key": "ctrl+shift+/",
"command": "editor.action.blockComment",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+a",
"command": "-editor.action.blockComment",
"when": "editorTextFocus && !editorReadonly"
}
]
// Place your settings in this file to overwrite the default settings
{
"editor.fontSize": 22,
"editor.fontWeight": "bold",
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 10000,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"workbench.iconTheme": "vscode-icons",
"git.confirmSync": false,
"window.zoomLevel": 0,
"git.enableSmartCommit": true,
"editor.minimap.enabled": false,
"editor.wordWrap": "on",
"vsicons.dontShowNewVersionMessage": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment