Skip to content

Instantly share code, notes, and snippets.

@tupunco
Last active June 27, 2017 01:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tupunco/e1a5ab9ecee8a517dc541e4b0233161b to your computer and use it in GitHub Desktop.
Save tupunco/e1a5ab9ecee8a517dc541e4b0233161b to your computer and use it in GitHub Desktop.
vscode.settings
// 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"
}
]
{
"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