Skip to content

Instantly share code, notes, and snippets.

@dorgonman
Last active August 25, 2019 15:18
Show Gist options
  • Save dorgonman/b6fea7479b950cc48a57df150cbea932 to your computer and use it in GitHub Desktop.
Save dorgonman/b6fea7479b950cc48a57df150cbea932 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
{"lastUpload":"2019-08-25T15:18:01.590Z","extensionVersion":"v3.4.2"}
[
{
"metadata": {
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd",
"publisherId": "ac3a3342-db76-40ef-9277-4657632d3bfe",
"publisherDisplayName": "Shan Khan"
},
"name": "code-settings-sync",
"publisher": "Shan",
"version": "2.8.3"
},
{
"metadata": {
"id": "690b692e-e8a9-493f-b802-8089d50ac1b2",
"publisherId": "5f5636e7-69ed-4afe-b5d6-8d231fb3d3ee",
"publisherDisplayName": "Microsoft"
},
"name": "cpptools",
"publisher": "ms-vscode",
"version": "0.13.1"
},
{
"metadata": {
"id": "d0bfc4ab-1d3a-4487-8782-7cf6027b4fff",
"publisherId": "5f5636e7-69ed-4afe-b5d6-8d231fb3d3ee",
"publisherDisplayName": "Microsoft"
},
"name": "csharp",
"publisher": "ms-vscode",
"version": "1.12.1"
},
{
"metadata": {
"id": "61d03280-3919-4dd1-bce1-178ca21fdeaf",
"publisherId": "acd591bd-fa80-4809-bdbd-28c80bed19ec",
"publisherDisplayName": "James Yu"
},
"name": "latex-workshop",
"publisher": "James-Yu",
"version": "3.5.5"
},
{
"metadata": {
"id": "b3d03957-2620-41ee-9854-88b0af1ee988",
"publisherId": "7f4b7809-c3d4-45fe-b051-c14e60f47a10",
"publisherDisplayName": "Remco Ros"
},
"name": "startanyshell",
"publisher": "remcoros",
"version": "0.3.1"
},
{
"metadata": {
"id": "e2c479df-2c90-4915-9015-595ef0d79bd5",
"publisherId": "d2f3b407-3bc3-49b8-ace0-bf99e51fda4f",
"publisherDisplayName": "Microsoft"
},
"name": "team",
"publisher": "ms-vsts",
"version": "1.122.0"
},
{
"metadata": {
"id": "97a08c5f-6667-4242-a5c5-045dfb6bd4b9",
"publisherId": "47daa402-5396-4346-b7bd-62494d6d63ec",
"publisherDisplayName": "Wayou Liu"
},
"name": "vscode-todo-highlight",
"publisher": "wayou",
"version": "0.5.11"
}
]
// 將您的按鍵組合放入此檔案中以覆寫預設值
[
{
"key": "f5",
"command": "latex-workshop.build",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+b",
"command": "-latex-workshop.build",
"when": "editorTextFocus"
},
{
"key": "f6",
"command": "latex-workshop.tab",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+t",
"command": "-latex-workshop.tab",
"when": "editorTextFocus"
},
{
"key": "f7",
"command": "latex-workshop.view",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+v",
"command": "-latex-workshop.view",
"when": "editorTextFocus"
}
]
{
// 定義 VSCode 的顯示語言。
// 如需支援的語言清單,請參閱 https://go.microsoft.com/fwlink/?LinkId=761051。
// 改變設定值後需要重新啟動 VSCode.
"locale":"en"
}
{
"files.associations": {
"*.tex": "latex"
},
"latex-workshop.latex.recipes": [{
"name": "recipe-my-latex-build",
"tools": [
"tool-lualatex"
]
}],
"latex-workshop.latex.tools": [
{
"name": "tool-lualatex",
"command": "lualatex",
"args": [
"-interaction=errorstopmode",
"--halt-on-error",
"--file-line-error",
"--c-style-errors",
"-shell-escape",
"--enable-installer",
"%DOC%"
]
}
],
"sync.gist": "b6fea7479b950cc48a57df150cbea932",
"sync.autoDownload": false,
"sync.autoUpload": false,
"sync.forceDownload": false,
"sync.quietSync": false,
"sync.askGistName": false,
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\usr\\bin\\bash.exe",
"terminal.integrated.shellArgs.windows": ["--login","-i"],
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 5000,
"team.showWelcomeMessage": false,
"files.exclude": {
"**/.git": false,
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"latex-workshop.view.pdf.viewer": "browser",
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"jenkins.pipeline.linter.connector.url": "http://192.168.27.55:8080/pipeline-model-converter/validate",
"jenkins.pipeline.linter.connector.user": "dorgonman",
"workbench.iconTheme": "material-icon-theme",
"editor.suggestSelection": "first",
"latex-workshop.latex.autoBuild.run": "never",
"editor.accessibilitySupport": "off",
"sync.forceUpload": true,
"latex-workshop.latex.magic.args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-shell-escape",
"%DOC%"
],
"latex-workshop.intellisense.package.enabled": true,
"latex-workshop.latex.autoBuild.cleanAndRetry.enabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment