Skip to content

Instantly share code, notes, and snippets.

@raido
Last active June 12, 2017 18:34
Show Gist options
  • Save raido/dc1ebc0fcc9fc240831659eeeaee55cb to your computer and use it in GitHub Desktop.
Save raido/dc1ebc0fcc9fc240831659eeeaee55cb to your computer and use it in GitHub Desktop.
VSCode Config
[
{
"key": "shift+cmd+d",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus"
},
{
"key": "cmd+k t",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "shift+cmd+g",
"command": "workbench.view.scm"
},
{
"key": "ctrl+shift+g",
"command": "-workbench.view.scm"
}
]
{
"workbench.activityBar.visible": true,
"window.zoomLevel": 0,
"editor.fontSize": 14,
"editor.cursorStyle": "block",
"editor.rulers": [
80
],
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/tmp": true,
".*/*": true
},
"diffEditor.renderSideBySide": false,
"git.confirmSync": false,
"search.useIgnoreFilesByDefault": true,
"terminal.integrated.fontSize": 14,
"terminal.integrated.lineHeight": 1.4,
"terminal.integrated.fontFamily": "Monaco",
"terminal.integrated.cursorBlinking": true,
"todohighlight.isCaseSensitive": false,
"todohighlight.keywords": [
"TODO",
"FIXME",
"IDEA",
{
"text": "HACK",
"color": "#000",
"isWholeLine": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment