Skip to content

Instantly share code, notes, and snippets.

@analytic-bias
Last active August 24, 2019 05:13
Show Gist options
  • Save analytic-bias/4e599828f918f773cd7b630a16183deb to your computer and use it in GitHub Desktop.
Save analytic-bias/4e599828f918f773cd7b630a16183deb to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
{"lastUpload":"2019-08-24T05:13:05.777Z","extensionVersion":"v3.4.2"}
[
{
"metadata": {
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd",
"publisherId": "Shan.code-settings-sync",
"publisherDisplayName": "Shan"
},
"name": "code-settings-sync",
"publisher": "Shan",
"version": "3.4.2"
},
{
"metadata": {
"id": "f6dbd813-b0a0-42c1-90ea-10dde9d925a7",
"publisherId": "streetsidesoftware.code-spell-checker",
"publisherDisplayName": "streetsidesoftware"
},
"name": "code-spell-checker",
"publisher": "streetsidesoftware",
"version": "1.7.18"
},
{
"metadata": {
"id": "61d03280-3919-4dd1-bce1-178ca21fdeaf",
"publisherId": "James-Yu.latex-workshop",
"publisherDisplayName": "James-Yu"
},
"name": "latex-workshop",
"publisher": "James-Yu",
"version": "8.0.6"
}
]
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+enter",
"command": "latex-workshop.build",
"when": "!config.latex-workshop.bind.altKeymap.enabled"
},
{
"key": "ctrl+alt+b",
"command": "-latex-workshop.build",
"when": "!config.latex-workshop.bind.altKeymap.enabled"
},
{
"key": "ctrl+shift+enter",
"command": "latex-workshop.recipes"
},
{
"key": "ctrl+alt+v",
"command": "latex-workshop.view",
"when": "!config.latex-workshop.bind.altKeymap.enabled"
},
{
"key": "ctrl+alt+v",
"command": "-latex-workshop.view",
"when": "!config.latex-workshop.bind.altKeymap.enabled"
}
]
// Empty
[
{
"key": "cmd+enter",
"command": "latex-workshop.build",
"when": "!config.latex-workshop.bind.altKeymap.enabled"
},
{
"key": "alt+cmd+b",
"command": "-latex-workshop.build",
"when": "!config.latex-workshop.bind.altKeymap.enabled"
},
{
"key": "alt+cmd+enter",
"command": "latex-workshop.kill"
},
{
"key": "shift+cmd+enter",
"command": "latex-workshop.recipes"
}
]
{
"workbench.colorTheme": "Quiet Light",
"editor.fontFamily": "Source Code Pro",
"editor.fontSize": 16,
"terminal.integrated.shell.windows": "C:\\WINDOWS\\Sysnative\\cmd.exe",
"editor.wordWrap": "on",
"latex-workshop.latex.tools": [
{
"name": "latexmk",
"command": "latexmk",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"%DOC%"
]
},
{
"name": "xelatex",
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-recorder",
"%DOC%"
]
},
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
]
},
{
"name": "bibtex",
"command": "bibtex",
"args": [
"%DOCFILE%"
]
},
{
"name": "makeindex",
"command": "makeindex",
"args": [
"%DOCFILE%"
]
}
],
"latex-workshop.latex.recipes": [
{
"name": "pdflatex",
"tools": [
"pdflatex"
]
},
{
"name": "pdflatex -> bibtex -> makeindex -> pdflatex*2",
"tools": [
"pdflatex",
"bibtex",
"makeindex",
"pdflatex",
"pdflatex"
]
},
{
"name": "xelatex",
"tools": [
"xelatex"
]
},
{
"name": "xelatex -> bibtex -> makeindex -> xelatex * 2",
"tools": [
"xelatex",
"bibtex",
"makeindex",
"xelatex",
"xelatex"
]
},
{
"name": "latexmk",
"tools": [
"latexmk"
]
}
],
"latex-workshop.chktex.run": "onType",
"latex-workshop.latex.autoBuild.cleanAndRetry.enabled": false,
"latex-workshop.latex.autoBuild.run": "never",
"latex-workshop.showContextMenu": true,
"latex-workshop.view.pdf.viewer": "tab",
"latex-workshop.latex.build.clearLog.everyRecipeStep.enabled": false,
"latex-workshop.viewer.pdf.internal.port": 11111,
"git.autofetch": true,
"latex-workshop.intellisense.package.enabled": true,
"git.enableSmartCommit": true,
"git.confirmSync": false,
"workbench.startupEditor": "newUntitledFile",
"latex-workshop.synctex.path": "C:\\ProgramData\\chocolatey\\bin\\synctex.exe",
"latex-workshop.hover.preview.enabled": false,
"latex-workshop.intellisense.unimathsymbols.enabled": true,
"latex-workshop.latex.autoClean.run": "onBuilt",
"extensions.ignoreRecommendations": true,
"sync.gist": "4e599828f918f773cd7b630a16183deb",
"latex-workshop.latex.recipe.default": "lastUsed",
"window.zoomLevel": 0
}
{
// Place your snippets for latex 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"
// }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment