Skip to content

Instantly share code, notes, and snippets.

@sillero
Last active July 26, 2018 00:54
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 sillero/9889e0754004b9c9d5075ff684883814 to your computer and use it in GitHub Desktop.
Save sillero/9889e0754004b9c9d5075ff684883814 to your computer and use it in GitHub Desktop.
VSCode's Settings - Syncing
[
{
"id": "christian-kohler.path-intellisense",
"name": "path-intellisense",
"publisher": "christian-kohler",
"version": "1.4.2"
},
{
"id": "eamodio.gitlens",
"name": "gitlens",
"publisher": "eamodio",
"version": "8.4.1"
},
{
"id": "eg2.tslint",
"name": "tslint",
"publisher": "eg2",
"version": "1.0.33"
},
{
"id": "Equinusocio.vsc-material-theme",
"name": "vsc-material-theme",
"publisher": "Equinusocio",
"version": "2.3.0"
},
{
"id": "esbenp.prettier-vscode",
"name": "prettier-vscode",
"publisher": "esbenp",
"version": "1.5.0"
},
{
"id": "ms-azuretools.vscode-cosmosdb",
"name": "vscode-cosmosdb",
"publisher": "ms-azuretools",
"version": "0.8.0"
},
{
"id": "ms-vscode.azure-account",
"name": "azure-account",
"publisher": "ms-vscode",
"version": "0.4.1"
},
{
"id": "ms-vsliveshare.vsliveshare",
"name": "vsliveshare",
"publisher": "ms-vsliveshare",
"version": "0.3.395"
},
{
"id": "nonoroazoro.syncing",
"name": "syncing",
"publisher": "nonoroazoro",
"version": "1.6.2"
},
{
"id": "PKief.material-icon-theme",
"name": "material-icon-theme",
"publisher": "PKief",
"version": "3.5.1"
},
{
"id": "wix.vscode-import-cost",
"name": "vscode-import-cost",
"publisher": "wix",
"version": "2.7.2"
}
]
{
"editor.fontFamily": "OperatorMono-XLight",
"editor.fontSize": 14,
"editor.tabSize": 2,
"editor.minimap.showSlider": "always",
"editor.wordWrap": "on",
"javascript.validate.enable": false,
"editor.renderIndentGuides": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"files.associations": {
"*.chromejson": "json"
},
"window.zoomLevel": 0,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"editor.minimap.enabled": true,
"editor.minimap.renderCharacters": false,
"editor.cursorBlinking": "solid",
"window.nativeTabs": false,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
".coffee/": true,
".do_built.dir": true,
"cache/": true,
".build/": true
},
"workbench.iconTheme": "material-icon-theme",
"files.useExperimentalFileWatcher": true,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true,
"suppressUpdateNotice": false,
"suppressWelcomeNotice": true
},
"gitlens.codeLens.authors.enabled": false,
"tslint.autoFixOnSave": true,
"git.autofetch": true,
"editor.minimap.side": "left",
"gitlens.gitExplorer.files.layout": "auto",
"gitlens.codeLens.enabled": false,
"gitlens.keymap": "alternate",
"gitlens.historyExplorer.enabled": false,
"files.autoSave": "afterDelay",
"editor.formatOnSave": true,
"editor.formatOnType": true,
"files.defaultLanguage": "typescript",
"workbench.sideBar.location": "left",
"npm.enableScriptExplorer": true,
"npm.scriptExplorerAction": "run",
"materialTheme.fixIconsRunning": false,
"workbench.colorTheme": "Material Theme Darker High Contrast",
"editor.tokenColorCustomizations": {
"[Material Theme Darker High Contrast]": {
"textMateRules": [
{
"scope": [
"storage.modifier.ts",
"storage.type.ts",
"meta.type.annotation.ts",
"keyword.operator.expression.instanceof.ts",
"constant.language.undefined.ts",
"constant.language.null.ts",
"constant.language.nan.ts"
],
"settings": {
"fontStyle": "italic"
}
}
],
}
},
"debug.toolBarLocation": "docked",
"gitlens.hovers.currentLine.enabled": false,
"gitlens.heatmap.toggleMode": "window",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment