Skip to content

Instantly share code, notes, and snippets.

@andraaspar
Last active March 20, 2017 11:03
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 andraaspar/f0a16ed7dd1231f522d3361a6abca049 to your computer and use it in GitHub Desktop.
Save andraaspar/f0a16ed7dd1231f522d3361a6abca049 to your computer and use it in GitHub Desktop.
Visual Studio Code settings
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "ctrl+d", "command": "editor.action.copyLinesDownAction", "when": "editorFocus" },
{ "key": "ctrl+shift+d", "command": "editor.action.deleteLines", "when": "editorFocus" },
{ "key": "ctrl+shift+k", "command": "workbench.action.tasks.runTask" },
{ "key": "ctrl+alt+right", "command": "workbench.action.compareEditor.nextChange", "when": "editorFocus" },
{ "key": "ctrl+alt+left", "command": "workbench.action.compareEditor.previousChange", "when": "editorFocus" },
{ "key": "shift+alt+w", "command": "editor.emmet.action.wrapWithAbbreviation", "when": "editorFocus" },
{ "key": "ctrl+shift+n", "command": "workbench.files.action.showActiveFileInExplorer", "when": "editorFocus" },
{ "key": "ctrl+-", "command": "editor.action.commentLine", "when": "editorFocus" },
{ "key": "shift+alt+y", "command": "tsimporter.addImport", "when": "editorFocus" },
{ "key": "ctrl+2", "command": "editor.action.sortLinesAscending", "when": "editorFocus" },
{ "key": "ctrl+3", "command": "editor.action.sortLinesDescending", "when": "editorFocus" },
{ "key": "down", "command": "-showNextParameterHint" },
{ "key": "up", "command": "-showPrevParameterHint" },
]
// Place your settings in this file to overwrite the default settings
{
"editor.autoClosingBrackets": false,
"editor.fontSize": 12,
"editor.insertSpaces": false,
"editor.renderControlCharacters": true,
"editor.renderWhitespace": true,
"editor.trimAutoWhitespace": false,
"editor.wordSeparators": "`!#%^&*()=+[{]}\\|;:'\",.<>/?",
"editor.wordWrap": "on",
"explorer.autoReveal": false,
"explorer.openEditors.visible": 0,
"files.eol": "\n",
"git.enableLongCommitWarning": false,
"html.format.extraLiners": "",
"html.format.indentInnerHtml": true,
"html.format.maxPreserveNewLines": 1,
"html.format.unformatted": "em, strong, abbr, acronym, q, sub, sup, tt, i, b, big, small, u, s, strike, ins, del, pre",
"html.format.wrapLineLength": 0,
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
"editor.mouseWheelScrollSensitivity": 2,
"git.confirmSync": false,
"alignment.chars": {
"from": {
"spaceBefore": 1,
"spaceAfter": 1
},
"{": {
"spaceBefore": 1,
"spaceAfter": 0
}
},
"tsimporter.emitSemicolon": false,
"window.zoomLevel": 0,
"workbench.iconTheme": "vs-seti"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment