This repository has been archived by the owner on Jul 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First pass on switching extensions (#2)
Should mostly switch fine Backs up extensions to globalStorage when you remove them for faster reload Install not working yet
- Loading branch information
1 parent
92b3311
commit dc1d39b
Showing
8 changed files
with
392 additions
and
13 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,123 @@ | ||
{ | ||
"editor.fontSize": 24 | ||
"editor.fontSize": 24, | ||
"profileSwitcher.profiles": ["Default"], | ||
"profileSwitcher.storage": { | ||
"Default": { | ||
"sync.gist": "40c333588d64df34c6f36f196010e5ee", | ||
"sync.lastUpload": "", | ||
"sync.autoDownload": false, | ||
"sync.autoUpload": false, | ||
"sync.lastDownload": "2017-11-03T04:41:33.893Z", | ||
"sync.forceDownload": false, | ||
"sync.anonymousGist": false, | ||
"sync.host": "", | ||
"sync.pathPrefix": "", | ||
"sync.quietSync": false, | ||
"sync.askGistName": false, | ||
"workbench.colorTheme": "1984 - Light", | ||
"files.autoSave": "afterDelay", | ||
"editor.renderWhitespace": "all", | ||
"editor.fontFamily": "Fira Code", | ||
"editor.fontLigatures": true, | ||
"workbench.startupEditor": "newUntitledFile", | ||
"files.autoSaveDelay": 5000, | ||
"sync.removeExtensions": true, | ||
"sync.syncExtensions": true, | ||
"team.showWelcomeMessage": false, | ||
"terminal.integrated.rendererType": "auto", | ||
"explorer.confirmDelete": false, | ||
"window.zoomLevel": 0, | ||
"azureStorage.preview.staticWebsites": true, | ||
"breadcrumbs.enabled": true, | ||
"powershell.powerShellExePath": "C:\\WINDOWS\\SysWow64\\WindowsPowerShell\\v1.0\\powershell.exe", | ||
"FSharp.enableReferenceCodeLens": true, | ||
"FSharp.fsacRuntime": "netcore", | ||
"workbench.iconTheme": "vscode-icons", | ||
"peacock.favoriteColors": [ | ||
{ | ||
"name": "Angular Red", | ||
"value": "#b52e31" | ||
}, | ||
{ | ||
"name": "Auth0 Orange", | ||
"value": "#eb5424" | ||
}, | ||
{ | ||
"name": "Azure Blue", | ||
"value": "#007fff" | ||
}, | ||
{ | ||
"name": "C# Purple", | ||
"value": "#68217A" | ||
}, | ||
{ | ||
"name": "Gatsby Purple", | ||
"value": "#639" | ||
}, | ||
{ | ||
"name": "Go Cyan", | ||
"value": "#5dc9e2" | ||
}, | ||
{ | ||
"name": "Java Blue-Gray", | ||
"value": "#557c9b" | ||
}, | ||
{ | ||
"name": "JavaScript Yellow", | ||
"value": "#f9e64f" | ||
}, | ||
{ | ||
"name": "Mandalorian Blue", | ||
"value": "#1857a4" | ||
}, | ||
{ | ||
"name": "Node Green", | ||
"value": "#215732" | ||
}, | ||
{ | ||
"name": "React Blue", | ||
"value": "#00b3e6" | ||
}, | ||
{ | ||
"name": "Something Different", | ||
"value": "#832561" | ||
}, | ||
{ | ||
"name": "Vue Green", | ||
"value": "#42b883" | ||
} | ||
], | ||
"[javascript]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[jsonc]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"editor.fontSize": 14, | ||
"[json]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"editor.formatOnSave": true, | ||
"[typescriptreact]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"profileSwitcher.profiles": ["test1"], | ||
"profileSwitcher.storage": { | ||
"test1": { | ||
"foo": "bar" | ||
} | ||
} | ||
} | ||
}, | ||
"profileSwitcher.extensions": { | ||
"Default": [ | ||
{ | ||
"id": "96fa4707-6983-4489-b7c5-d5ffdfdcce90", | ||
"publisherId": "esbenp.prettier-vscode", | ||
"publisherName": "esbenp", | ||
"version": "1.9.0", | ||
"name": "prettier-vscode" | ||
} | ||
] | ||
} | ||
} |
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
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
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
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
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
Oops, something went wrong.