Last active
June 12, 2017 18:34
-
-
Save raido/dc1ebc0fcc9fc240831659eeeaee55cb to your computer and use it in GitHub Desktop.
VSCode Config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"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" | |
} | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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