Skip to content

Instantly share code, notes, and snippets.

@mjasnikovs
Last active March 31, 2020 06:25
Show Gist options
  • Save mjasnikovs/7c0b34356d0b5bce4b3cfb625483d498 to your computer and use it in GitHub Desktop.
Save mjasnikovs/7c0b34356d0b5bce4b3cfb625483d498 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
{"lastUpload":"2019-07-31T05:45:49.957Z","extensionVersion":"v3.4.1"}
[
{
"metadata": {
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd",
"publisherId": "Shan.code-settings-sync",
"publisherDisplayName": "Shan"
},
"name": "code-settings-sync",
"publisher": "Shan",
"version": "3.4.1"
},
{
"metadata": {
"id": "dff6b801-247e-40e9-82e8-8c9b1d19d1b8",
"publisherId": "christian-kohler.npm-intellisense",
"publisherDisplayName": "christian-kohler"
},
"name": "npm-intellisense",
"publisher": "christian-kohler",
"version": "1.3.0"
},
{
"metadata": {
"id": "96fa4707-6983-4489-b7c5-d5ffdfdcce90",
"publisherId": "esbenp.prettier-vscode",
"publisherDisplayName": "esbenp"
},
"name": "prettier-vscode",
"publisher": "esbenp",
"version": "1.9.0"
},
{
"metadata": {
"id": "3acfcc8d-a050-4675-8e49-cdc9f8945404",
"publisherId": "naumovs.theme-oceanicnext",
"publisherDisplayName": "naumovs"
},
"name": "theme-oceanicnext",
"publisher": "naumovs",
"version": "0.0.4"
},
{
"metadata": {
"id": "583b2b34-2c1e-4634-8c0b-0b82e283ea3a",
"publisherId": "dbaeumer.vscode-eslint",
"publisherDisplayName": "dbaeumer"
},
"name": "vscode-eslint",
"publisher": "dbaeumer",
"version": "1.9.0"
},
{
"metadata": {
"id": "90a37ca1-92a2-488a-b196-7a8c0b0127ea",
"publisherId": "ms-vscode.vscode-typescript-tslint-plugin",
"publisherDisplayName": "ms-vscode"
},
"name": "vscode-typescript-tslint-plugin",
"publisher": "ms-vscode",
"version": "1.2.2"
}
]
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+shift+u",
"command": "-workbench.action.output.toggleOutput"
},
{
"key": "ctrl+shift+u",
"command": "editor.action.transformToUppercase"
},
{
"key": "ctrl+shift+l",
"command": "-editor.action.selectHighlights",
"when": "editorFocus"
},
{
"key": "ctrl+shift+l",
"command": "editor.action.transformToLowercase"
}
]
{
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"editor.fontSize": 19,
"editor.insertSpaces": false,
"editor.fontFamily": "Consolas, 'Courier New', monospace",
"workbench.colorTheme": "Oceanic Next",
"files.eol": "\n",
"[javascript]": {
"editor.formatOnSave": true
},
"window.zoomLevel": 0,
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"editor.renderLineHighlight": "none",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"node_modules": true
},
"workbench.startupEditor": "newUntitledFile",
"eslint.autoFixOnSave": true,
"eslint.validate": [
"javascript",
"javascriptreact",
{"language": "typescript", "autoFix": true },
{"language": "typescriptreact", "autoFix": true }
],
"typescript.updateImportsOnFileMove.enabled": "always",
"breadcrumbs.enabled": true,
"workbench.editor.enablePreview": false,
"prettier.eslintIntegration": true,
"prettier.tslintIntegration": true,
"[typescript]": {},
"npm-intellisense.scanDevDependencies": true,
"npm-intellisense.showBuildInLibs": true,
"npm-intellisense.importLinebreak": ""
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment