Last active
November 4, 2020 12:52
-
-
Save marcuskwan/ab9bb2b745c7e8e46fb9f10e558e5736 to your computer and use it in GitHub Desktop.
vscode settings sync
This file contains hidden or 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
{"lastUpload":"2020-11-04T12:49:44.988Z","extensionVersion":"v3.4.3"} |
This file contains hidden or 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
[ | |
{ | |
"metadata": { | |
"id": "7a0110bb-231a-4598-aa1b-0769ea46d28b", | |
"publisherId": "aaron-bond.better-comments", | |
"publisherDisplayName": "aaron-bond" | |
}, | |
"name": "better-comments", | |
"publisher": "aaron-bond", | |
"version": "2.0.5" | |
}, | |
{ | |
"metadata": { | |
"id": "5a6e2b21-1d61-4acd-b31b-907f9c23f18a", | |
"publisherId": "CoenraadS.bracket-pair-colorizer-2", | |
"publisherDisplayName": "CoenraadS" | |
}, | |
"name": "bracket-pair-colorizer-2", | |
"publisher": "CoenraadS", | |
"version": "0.0.29" | |
}, | |
{ | |
"metadata": { | |
"id": "a6a0c5b2-d078-4bf5-a9ee-4e37054414b3", | |
"publisherId": "formulahendry.code-runner", | |
"publisherDisplayName": "formulahendry" | |
}, | |
"name": "code-runner", | |
"publisher": "formulahendry", | |
"version": "0.11.1" | |
}, | |
{ | |
"metadata": { | |
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd", | |
"publisherId": "Shan.code-settings-sync", | |
"publisherDisplayName": "Shan" | |
}, | |
"name": "code-settings-sync", | |
"publisher": "Shan", | |
"version": "3.4.3" | |
}, | |
{ | |
"metadata": { | |
"id": "92a406ed-c6eb-4fa4-a82a-3c91ee673f77", | |
"publisherId": "mtdmali.daybreak-theme", | |
"publisherDisplayName": "mtdmali" | |
}, | |
"name": "daybreak-theme", | |
"publisher": "mtdmali", | |
"version": "1.2.0" | |
}, | |
{ | |
"metadata": { | |
"id": "96fa4707-6983-4489-b7c5-d5ffdfdcce90", | |
"publisherId": "esbenp.prettier-vscode", | |
"publisherDisplayName": "esbenp" | |
}, | |
"name": "prettier-vscode", | |
"publisher": "esbenp", | |
"version": "3.20.0" | |
}, | |
{ | |
"metadata": { | |
"id": "f1f59ae4-9318-4f3c-a9b5-81b2eaa5f8a5", | |
"publisherId": "ms-python.python", | |
"publisherDisplayName": "ms-python" | |
}, | |
"name": "python", | |
"publisher": "ms-python", | |
"version": "2020.2.64397" | |
} | |
] |
This file contains hidden or 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, | |
"code-runner.executorMap": { | |
"javascript": "node", | |
"php": "C:\\php\\php.exe", | |
"python": "python", | |
"perl": "perl", | |
"ruby": "C:\\Ruby23-x64\\bin\\ruby.exe", | |
"go": "go run", | |
"html": "\"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe\"", | |
"java": "cd $dir && javac $fileName && java $fileNameWithoutExt", | |
"c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt" | |
}, | |
"files.autoSave": "afterDelay", | |
"files.autoSaveDelay": 50, | |
"workbench.iconTheme": "Daybreak", | |
"workbench.colorTheme": "Daybreak", | |
"editor.fontFamily": "Cascadia Code, Menlo, Monaco, 'Courier New', monospace", | |
"better-comments.tags": [ | |
{ | |
"tag": "!", | |
"color": "#2E302E", | |
"strikethrough": false, | |
"backgroundColor": "#E95678" | |
}, | |
{ | |
"tag": "?", | |
"color": "#2E302E", | |
"strikethrough": false, | |
"backgroundColor": "#B877DB" | |
}, | |
{ | |
"tag": "//", | |
"color": "#474747", | |
"strikethrough": true, | |
"backgroundColor": "transparent" | |
}, | |
{ | |
"tag": "todo", | |
"color": "#FAB795", | |
"strikethrough": false, | |
"backgroundColor": "#2E302E" | |
}, | |
{ | |
"tag": "*", | |
"color": "#FDF0ED", | |
"strikethrough": false, | |
"backgroundColor": "transparent" | |
}, | |
{ | |
"tag": "#", | |
"color": "#FDF0ED", | |
"strikethrough": false, | |
"backgroundColor": "#2E302E" | |
}, | |
{ | |
"tag": "_", | |
"color": "#2E302E", | |
"strikethrough": false, | |
"backgroundColor": "#FDF0ED" | |
} | |
], | |
"bracket-pair-colorizer-2.colors": [ | |
"#FAC29A", | |
"#B877DB", | |
"#25B2BC" | |
], | |
"terminal.external.osxExec": "iTerm.app", | |
"terminal.integrated.shell.osx": "/bin/zsh", | |
"terminal.integrated.fontFamily": "MesloLGS NF, Menlo", | |
"editor.fontLigatures": true, | |
"sync.gist": "ab9bb2b745c7e8e46fb9f10e558e5736", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment