Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@MisaelRiojas
Forked from royriojas/cloudSettings
Created December 1, 2018 18:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save MisaelRiojas/86333352ed7c06e3011d02b8e720252f to your computer and use it in GitHub Desktop.
Save MisaelRiojas/86333352ed7c06e3011d02b8e720252f to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-12-01T18:40:07.609Z","extensionVersion":"v3.2.2"}
[
{
"metadata": {
"id": "d3836729-9cc1-42c1-b2af-d50071f57d29",
"publisherId": "formulahendry.auto-close-tag",
"publisherDisplayName": "formulahendry"
},
"name": "auto-close-tag",
"publisher": "formulahendry",
"version": "0.5.6"
},
{
"metadata": {
"id": "6e440e71-8ed9-4f25-bb78-4b13096b8a03",
"publisherId": "formulahendry.auto-rename-tag",
"publisherDisplayName": "formulahendry"
},
"name": "auto-rename-tag",
"publisher": "formulahendry",
"version": "0.0.15"
},
{
"metadata": {
"id": "32339d9d-6481-4dd4-a7a3-4a6009c12cf4",
"publisherId": "JerryHong.autofilename",
"publisherDisplayName": "JerryHong"
},
"name": "autofilename",
"publisher": "JerryHong",
"version": "0.1.3"
},
{
"metadata": {
"id": "d1ce9ebe-37e6-457f-b822-6e10ed0545d5",
"publisherId": "NathanRidley.autotrim",
"publisherDisplayName": "NathanRidley"
},
"name": "autotrim",
"publisher": "NathanRidley",
"version": "1.0.6"
},
{
"metadata": {
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd",
"publisherId": "Shan.code-settings-sync",
"publisherDisplayName": "Shan"
},
"name": "code-settings-sync",
"publisher": "Shan",
"version": "3.2.2"
},
{
"metadata": {
"id": "06457f7c-6032-4500-880d-1575c1b1cd01",
"publisherId": "rockingskier.copy-copy-paste",
"publisherDisplayName": "rockingskier"
},
"name": "copy-copy-paste",
"publisher": "rockingskier",
"version": "0.0.6"
},
{
"metadata": {
"id": "3e891cf9-53cb-49a3-8d01-8f0b1f0afb29",
"publisherId": "codezombiech.gitignore",
"publisherDisplayName": "codezombiech"
},
"name": "gitignore",
"publisher": "codezombiech",
"version": "0.6.0"
},
{
"metadata": {
"id": "4de763bd-505d-4978-9575-2b7696ecf94e",
"publisherId": "eamodio.gitlens",
"publisherDisplayName": "eamodio"
},
"name": "gitlens",
"publisher": "eamodio",
"version": "8.5.6"
},
{
"metadata": {
"id": "96fa4707-6983-4489-b7c5-d5ffdfdcce90",
"publisherId": "esbenp.prettier-vscode",
"publisherDisplayName": "esbenp"
},
"name": "prettier-vscode",
"publisher": "esbenp",
"version": "1.7.2"
},
{
"metadata": {
"id": "e8b469bd-915d-4070-bfc2-05c9b546f8ee",
"publisherId": "jakob101.RelativePath",
"publisherDisplayName": "jakob101"
},
"name": "RelativePath",
"publisher": "jakob101",
"version": "1.4.0"
},
{
"metadata": {
"id": "b864db6b-8147-4ff8-b05a-f7c906c91f02",
"publisherId": "joshpeng.sublime-babel-vscode",
"publisherDisplayName": "joshpeng"
},
"name": "sublime-babel-vscode",
"publisher": "joshpeng",
"version": "0.2.10"
},
{
"metadata": {
"id": "e96f7482-8e97-4155-8a7c-ad5fab4d8b2d",
"publisherId": "jprestidge.theme-material-theme",
"publisherDisplayName": "jprestidge"
},
"name": "theme-material-theme",
"publisher": "jprestidge",
"version": "1.0.1"
},
{
"metadata": {
"id": "583b2b34-2c1e-4634-8c0b-0b82e283ea3a",
"publisherId": "dbaeumer.vscode-eslint",
"publisherDisplayName": "dbaeumer"
},
"name": "vscode-eslint",
"publisher": "dbaeumer",
"version": "1.7.0"
},
{
"metadata": {
"id": "9a466d14-cbfa-431e-8ea8-71fc8cfc8148",
"publisherId": "capaj.vscode-exports-autocomplete",
"publisherDisplayName": "capaj"
},
"name": "vscode-exports-autocomplete",
"publisher": "capaj",
"version": "0.5.4"
}
]
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "alt+cmd+left",
"command": "workbench.action.navigateBack"
},
{
"key": "ctrl+-",
"command": "-workbench.action.navigateBack"
},
{
"key": "alt+cmd+right",
"command": "workbench.action.navigateForward"
},
{
"key": "ctrl+shift+-",
"command": "-workbench.action.navigateForward"
},
{
"key": "alt+cmd+v",
"command": "multiclip.list"
}
]
// Place your settings in this file to overwrite the default settings
{
"editor.fontFamily": "'Operator Mono Lig', Consolas, 'Courier New', monospace",
// Controls the font weight.
"editor.fontWeight": "normal",
// Enables font ligatures
"editor.fontLigatures": true,
// Controls the font size in pixels.
"editor.fontSize": 15,
"search.exclude": {
"**/node_modules": false
},
// When enabled, will trim trailing whitespace when you save a file.
"files.trimTrailingWhitespace": false,
// Controls auto save of dirty files. Accepted values: "off", "afterDelay", "onFocusChange" (editor loses focus), "onWindowChange" (window loses focus). If set to "afterDelay", you can configure the delay in "files.autoSaveDelay".
"files.autoSave": "onFocusChange",
// The number of spaces a tab is equal to. This setting is overriden based on the file contents when `editor.detectIndentation` is on.
"editor.tabSize": 2,
// Insert spaces when pressing Tab. This setting is overriden based on the file contents when `editor.detectIndentation` is on.
"editor.insertSpaces": true,
"window.zoomLevel": 0,
"typescript.format.enable": false,
// Enable/disable default JavaScript formatter.
"javascript.format.enable": false,
"workbench.statusBar.visible": true,
// Configure glob patterns for excluding files and folders.
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/static": true,
"**/.cache": true,
"**/.box": true,
"**/.temp": true,
"**/.nyc_output": true,
"**/.vagrant": true,
"**/logs": true
},
"workbench.colorTheme": "Sublime Material Theme - Dark",
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true,
"suppressUpdateNotice": false,
"suppressWelcomeNotice": true
},
"files.associations": {
"*.js": "javascriptreact"
},
"editor.minimap.enabled": false,
"gitlens.keymap": "chorded",
"telemetry.enableTelemetry": false,
// Specifies whether to enable GitLens telemetry (even if enabled still abides by the overall `telemetry.enableTelemetry` setting
"gitlens.advanced.telemetry.enabled": false,
"gitlens.historyExplorer.enabled": true,
// set this to false when you don't want to have imports added on pasting code
"vscode-exports-autocomplete.addImportsOnPaste": false,
// set this to true when you prefer spaces around curly braces
"vscode-exports-autocomplete.addSpacingAroundCurlyBraces": true,
// size limit for the cache of parsed exports, shared among all projects
"vscode-exports-autocomplete.cacheSizeLimit": "25MB",
// it might be useful to disable when you have a project where you can't sacrifice performance
"vscode-exports-autocomplete.enable": true,
// set this to false when you're annoyed by the stuff you get from your npm modules
"vscode-exports-autocomplete.enableNpmDependencies": false,
// generated import statements will always be indented using this string if it is set
"vscode-exports-autocomplete.indentationOverride": " ",
// set this to a higher value if 'on paste' is too aggressive for you
"vscode-exports-autocomplete.minimumWordLengthToImportOnPaste": 3,
// this allows to override the import style and force the imports to use this string as quotes
"vscode-exports-autocomplete.quoteCharOverride": "'",
"eslint.validate": [
"javascript",
"javascriptreact",
{ "language": "typescript", "autoFix": true },
{ "language": "typescriptreact", "autoFix": true }
],
"typescript.validate.enable": true,
"sync.gist": "c8db0dc6eb08d2fe98f12dbbda0d5036",
"sync.quietSync": false,
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"sync.autoDownload": false,
"sync.autoUpload": false,
"sync.forceDownload": false,
"editor.smoothScrolling": true,
"workbench.fontAliasing": "auto"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment