Created
March 29, 2019 06:47
-
-
Save sigorilla/c408bcedc3983f77f610e80a2d7f6662 to your computer and use it in GitHub Desktop.
vscode preferences
This file contains 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 override the defaultsauto[] | |
[ | |
{ | |
"key": "ctrl+k ctrl+u", | |
"command": "editor.action.transformToUppercase" | |
}, | |
{ | |
"key": "ctrl+k ctrl+l", | |
"command": "editor.action.transformToLowercase" | |
}, | |
{ | |
"key": "ctrl+r r", | |
"command": "-npm-script.rerun-last-script" | |
}, | |
{ | |
"key": "ctrl+k ctrl+r", | |
"command": "-workbench.action.keybindingsReference" | |
}, | |
{ | |
"key": "ctrl+r", | |
"command": "-workbench.action.quickOpenNavigateNextInRecentFilesPicker", | |
"when": "inQuickOpen && inRecentFilesPicker" | |
}, | |
{ | |
"key": "alt+r", | |
"command": "workbench.action.openRecent" | |
}, | |
{ | |
"key": "ctrl+r", | |
"command": "-workbench.action.openRecent" | |
}, | |
{ | |
"key": "alt+r", | |
"command": "-workbench.action.terminal.toggleFindRegex", | |
"when": "terminalFindWidgetFocused" | |
}, | |
{ | |
"key": "alt+r", | |
"command": "-workbench.action.terminal.toggleFindRegexTerminalFocus", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "alt+r", | |
"command": "-toggleFindRegex", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "alt+r", | |
"command": "-toggleSearchRegex", | |
"when": "searchViewletFocus && searchViewletVisible" | |
}, | |
{ | |
"key": "ctrl+shift+d", | |
"command": "-workbench.view.debug" | |
}, | |
{ | |
"key": "ctrl+shift+d", | |
"command": "editor.action.copyLinesDownAction", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+shift+alt+down", | |
"command": "-editor.action.copyLinesDownAction", | |
"when": "editorTextFocus && !editorReadonly" | |
} | |
] |
This file contains 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.enableCrashReporter": false, | |
"telemetry.enableTelemetry": false, | |
"workbench.colorTheme": "Ayu Mirage", | |
"workbench.iconTheme": "ayu", | |
"editor.renderWhitespace": "all", | |
"workbench.statusBar.feedback.visible": false, | |
"files.insertFinalNewline": true, | |
"files.trimFinalNewlines": true, | |
"workbench.sideBar.location": "left", | |
"files.autoSave": "off", | |
"editor.showFoldingControls": "always", | |
"editor.scrollBeyondLastLine": true, | |
"files.trimTrailingWhitespace": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.snippetSuggestions": "top", | |
"eslint.alwaysShowStatus": true, | |
"tslint.alwaysShowStatus": true, | |
"tslint.autoFixOnSave": true, | |
"eslint.autoFixOnSave": true, | |
"window.zoomLevel": 0, | |
"npm.enableScriptExplorer": true, | |
"editor.rulers": [ | |
80, | |
120 | |
], | |
"explorer.confirmDelete": false, | |
"workbench.startupEditor": "newUntitledFile", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"cSpell.language": "en,ru", | |
"cSpell.userWords": [ | |
"Toponym", | |
"masstransit", | |
"yandex" | |
], | |
"breadcrumbs.enabled": true, | |
"editor.minimap.enabled": false, | |
"gitlens.settings.mode": "advanced", | |
"gitlens.currentLine.scrollable": false, | |
"gitlens.hovers.currentLine.over": "line", | |
"gitlens.blame.format": "${id|10} ${author|20} ${message|40} ${date|19}", | |
"gitlens.hovers.enabled": false, | |
"gitlens.currentLine.enabled": false, | |
"gitlens.codeLens.enabled": false, | |
"gitlens.blame.avatars": false, | |
"gitlens.defaultDateFormat": "DD.MM.YYYY HH:mm:ss", | |
"gitlens.blame.dateFormat": "DD.MM.YYYY HH:mm:ss", | |
"javascript.preferences.quoteStyle": "single", | |
"typescript.preferences.quoteStyle": "single", | |
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false, | |
"githubPullRequests.telemetry.enabled": false, | |
"workbench.editor.highlightModifiedTabs": true, | |
"search.location": "panel", | |
"css.validate": false, | |
"gitlens.views.fileHistory.avatars": false, | |
"gitlens.views.lineHistory.avatars": false, | |
"gitlens.views.avatars": false, | |
"gitlens.views.compare.avatars": false, | |
"gitlens.views.repositories.avatars": false, | |
"gitlens.views.search.avatars": false, | |
"scss.validate": false, | |
"tslint.jsEnable": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment