Last active
June 27, 2017 01:14
-
-
Save tupunco/e1a5ab9ecee8a517dc541e4b0233161b to your computer and use it in GitHub Desktop.
vscode.settings
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": "ctrl+u", | |
"command": "editor.action.transformToLowercase", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+shift+u", | |
"command": "editor.action.transformToUppercase", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+k ctrl+d", | |
"command": "editor.action.format", | |
"when": "editorHasFormattingProvider && editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+k ctrl+m", | |
"command": "workbench.action.editor.changeLanguageMode" | |
}, | |
{ | |
"key": "ctrl+b", | |
"command": "workbench.action.toggleSidebarVisibility" | |
}, | |
{ | |
"key": "ctrl+shift+delete", | |
"command": "workbench.action.tasks.terminate" | |
}, | |
{ | |
"key": "ctrl+r", | |
"command": "workbench.action.tasks.runTask", | |
"when": "editorTextFocus" | |
} | |
] |
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
{ | |
"telemetry.enableTelemetry": false, | |
"telemetry.enableCrashReporter": false, | |
"extensions.autoUpdate": true, | |
"workbench.iconTheme": "vscode-icons", | |
"editor.fontSize": 16, | |
"editor.fontFamily": "'Droid Sans Mono', Consolas, '微软雅黑', monospace", | |
"files.autoSave": "onWindowChange", | |
"files.autoGuessEncoding": true, | |
"editor.renderWhitespace": "all", | |
"editor.minimap.enabled": true, | |
"editor.minimap.maxColumn": 80, | |
"editor.dragAndDrop": true, | |
"window.zoomLevel": 0, | |
"vsicons.dontShowNewVersionMessage": true, | |
"workbench.sideBar.location": "left", | |
"go.autocompleteUnimportedPackages": true, | |
"go.enableCodeLens": { | |
"references": false, | |
"runtest": true | |
}, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/.DS_Store": true, | |
"**/log": true, | |
"**/pkg": true | |
}, | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true | |
}, | |
"workbench.editor.enablePreview": true, | |
"terminal.integrated.shell.windows": "C:\\Windows\\Sysnative\\cmd.exe" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment