Created
October 26, 2016 13:49
-
-
Save cameronwp/c8f4e505b62dfc176f803f15cb14418a to your computer and use it in GitHub Desktop.
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
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ "key": "shift+cmd+]", "command": "workbench.action.nextEditor", | |
"when": "editorFocus" }, | |
{ "key": "shift+cmd+[", "command": "workbench.action.previousEditor", | |
"when": "editorFocus" }, | |
{ "key": "alt+t", "command": "workbench.action.tasks.test" }, | |
{ "key": "cmd+k cmd+u", "command": "extension.changeCase.upper", "when": "editorTextFocus" }, | |
{ "key": "cmd+k cmd+l", "command": "extension.changeCase.lower", "when": "editorTextFocus" }, | |
{ "key": "cmd+enter", "command": "workbench.action.debug.start", "when": "!inDebugMode" }, | |
{ "key": "cmd+r", "command": "workbench.action.debug.restart", | |
"when": "inDebugMode" }, | |
{ "key": "shift+cmd+c", "command": "workbench.action.terminal.toggleTerminal" }, | |
{ "key": "shift+cmd+alt+c", "command": "workbench.action.terminal.openNativeConsole" } | |
] |
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
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.glyphMargin": true, | |
"editor.rulers": [80], | |
"editor.tabSize": 2, | |
"editor.wrappingColumn": 0, | |
"editor.renderWhitespace": true, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontSize": 12, | |
"editor.fontLigatures": true, | |
"eslint.enable": true, | |
"files.associations": { | |
"bashrc": "shellscript", | |
"bash_*": "shellscript", | |
"zshrc": "shellscript", | |
"*.timeline": "json", | |
"*.zsh": "shellscript", | |
"*.zsh-theme": "shellscript" | |
}, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.hg": true, | |
"**/.svn": true, | |
"**/.DS_Store": true, | |
"node_modules/": true, | |
"bower_components/": true | |
}, | |
"files.trimTrailingWhitespace": true, | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/bower_components/**": true, | |
"**/node_modules/**": true | |
}, | |
"git.allowLargeRepositories": true, | |
"git.enableLongCommitWarning": false, | |
"html.suggest.angular1": false, | |
"html.suggest.ionic": false, | |
"jscs.disableIfNoConfig": true, | |
"terminal.external.osxExec": "iTerm.app", | |
"terminal.integrated.shellArgs.osx": ["-l"], | |
"window.restoreFullscreen": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment