Skip to content

Instantly share code, notes, and snippets.

@geoffreyangus
Last active October 27, 2020 17:48
Show Gist options
  • Save geoffreyangus/daca7315202361933cff828ad37bd667 to your computer and use it in GitHub Desktop.
Save geoffreyangus/daca7315202361933cff828ad37bd667 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-10-27T17:48:37.284Z","extensionVersion":"v3.4.3"}
[
{
"metadata": {
"id": "5178733e-4b02-4829-95c5-1ce970847c23",
"publisherId": "teabyii.ayu",
"publisherDisplayName": "teabyii"
},
"name": "ayu",
"publisher": "teabyii",
"version": "0.20.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": "fcf0848c-96b3-487a-a655-01aed955a594",
"publisherId": "jolaleye.horizon-theme-vscode",
"publisherDisplayName": "jolaleye"
},
"name": "horizon-theme-vscode",
"publisher": "jolaleye",
"version": "2.0.2"
},
{
"metadata": {
"id": "98790d67-10fa-497c-9113-f6c7489207b2",
"publisherId": "yzhang.markdown-all-in-one",
"publisherDisplayName": "yzhang"
},
"name": "markdown-all-in-one",
"publisher": "yzhang",
"version": "3.3.0"
},
{
"metadata": {
"id": "a654a671-80d2-4f77-9c27-7f83f02cf376",
"publisherId": "svsool.markdown-memo",
"publisherDisplayName": "svsool"
},
"name": "markdown-memo",
"publisher": "svsool",
"version": "0.2.2"
},
{
"metadata": {
"id": "1d66faf4-3266-4fce-b7c9-df60aecf496d",
"publisherId": "goessner.mdmath",
"publisherDisplayName": "goessner"
},
"name": "mdmath",
"publisher": "goessner",
"version": "2.5.1"
},
{
"metadata": {
"id": "f1f59ae4-9318-4f3c-a9b5-81b2eaa5f8a5",
"publisherId": "ms-python.python",
"publisherDisplayName": "ms-python"
},
"name": "python",
"publisher": "ms-python",
"version": "2020.9.114305"
}
]
// Place your key bindings in this file to override the defaults
[
{
"key": "cmd+shift+w",
"command": "memo.backlinksPanel.focus",
},
{
"key": "cmd+shift+l",
"command": "workbench.action.toggleSidebarVisibility"
},
{
"key": "cmd+enter",
"command": "editor.action.openLink",
"when": "editorTextFocus && editorLangId == 'markdown'"
},
]
{
"latex-workshop.view.pdf.viewer": "tab",
"editor.minimap.enabled": false,
"breadcrumbs.enabled": false,
"editor.renderWhitespace": "none",
"window.zoomLevel": 1,
"latex-workshop.latex.autoBuild.run": "never",
"workbench.colorTheme": "Horizon Italic",
"workbench.activityBar.visible": false,
"workbench.sideBar.location": "right",
"workbench.iconTheme": "ayu",
"editor.rulers": [
80
],
"[markdown]": {
"editor.autoClosingBrackets": "always",
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 80,
"editor.quickSuggestions": false,
"zenMode.centerLayout": true,
},
"sync.gist": "daca7315202361933cff828ad37bd667"
}
{
// Place your snippets for markdown here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
// "Print to console": {
// "prefix": "log",
// "body": [
// "console.log('$1');",
// "$2"
// ],
// "description": "Log output to console"
// }
"Hyperlink": {
"prefix": "/ln",
"body": [
"[$1]($2)"
],
"description": "Creates a hyperlink"
},
"Checkbox": {
"prefix": "/cb",
"body": [
"- [ ] $1"
],
"description": "Creates a checkbox"
},
"Go Link": {
"prefix": "/go",
"body": [
"[go/$1](http://go/$1)"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment