Skip to content

Instantly share code, notes, and snippets.

@sdussaut
Last active December 30, 2016 22:02
Show Gist options
  • Save sdussaut/e0fdd40f7aed78d867fc1110a95d21ac to your computer and use it in GitHub Desktop.
Save sdussaut/e0fdd40f7aed78d867fc1110a95d21ac to your computer and use it in GitHub Desktop.
VS Code config files
// Placez vos combinaisons de touches dans ce fichier pour remplacer les valeurs par défaut
[{
"key": "shift+cmd+.",
"command": "editor.action.commentLine",
"when": "editorTextFocus"
},{
"key": "cmd+m",
"command": "workbench.action.openGlobalSettings"
},{
"key": "cmd+/",
"command": "workbench.action.zoomIn"
},{
"key": "cmd+=",
"command": "workbench.action.zoomOut"
},{
"key": "cmd+r",
"command": "workbench.action.gotoSymbol",
"when": "editorTextFocus"
},{
"key": "cmd+w",
"command": "workbench.action.closeActiveEditor"
},{
"key": "cmd+space",
"command": "editor.action.triggerSuggest",
"when": "editorTextFocus"
}]
// Placez vos paramètres dans ce fichier pour remplacer les paramètres par défaut
{
"files.trimTrailingWhitespace": true,
"editor.renderIndentGuides": true,
"workbench.editor.showTabs": false,
"emmet.preferences": {
"css.autoInsertVendorPrefixes": false,
"stylus.valueSeparator": ": ",
"caniuse.enabled": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment