Update VSCode settings
authorThomas Pietrzak <thomas.pietrzak@gmail.com>
Thu, 27 May 2021 09:37:37 +0000 (11:37 +0200)
committerThomas Pietrzak <thomas.pietrzak@gmail.com>
Thu, 27 May 2021 09:37:37 +0000 (11:37 +0200)
.pdf [deleted file]
.vscode/settings.json

diff --git a/ .pdf b/ .pdf
deleted file mode 100644 (file)
index 19e81a0..0000000
Binary files a/ .pdf and /dev/null differ
index 0eee5f765d076746c990aeb39f6b617549603f5f..5feed879342fd9fbae9708b4f5a650f5a583018a 100644 (file)
@@ -1,6 +1,36 @@
 {
-  "latex-workshop.latex.recipe.default": "latexmk (xelatex)",
+  "latex-workshop.latex.recipe.default": "xelatex bibtex",
+  "latex-workshop.latex.autoBuild.run": "never",
+  "latex-workshop.view.pdf.backgroundColor": "#333333",
   "latex-workshop.latex.tools": [
+    {
+      "name": "xelatex",
+      "command": "xelatex",
+      "args": [
+        "-synctex=1",
+        "-interaction=nonstopmode",
+        "-file-line-error",
+        "%DOCFILE%"
+      ]
+    },
+    {
+      "name": "pdflatex",
+      "command": "pdflatex",
+      "args": [
+        "-synctex=1",
+        "-interaction=nonstopmode",
+        "-file-line-error",
+        "%DOCFILE%"
+      ]
+    },
+    {
+      "name": "bibtex",
+      "command": "bibtex",
+      "args": [
+        "-min-crossrefs=200",
+        "%DOCFILE%"
+      ]
+    },
     {
       "name": "xelatexmk",
       "command": "latexmk",
           "xelatex"
       ]
     }
-  ]
+  ],
+  "files.exclude": {
+    "**/_minted-*": true,
+    "**/*.aux": true,
+    "**/*.bbl": true,
+    "**/*.blg": true,
+    "**/*.lof": true,
+    "**/*.log": true,
+    "**/*.lol": true,
+    "**/*.lot": true,
+    "**/*.nav": true,
+    "**/*.out": true,
+    "**/*.snm": true,
+    "**/*.swp": true,
+    "**/*.toc": true,
+    "**/*.fls": true,
+    "**/*.xdv": true,
+    "**/*.synctex.gz": true,
+    "**/*.synctex(busy)": true,
+    "**/*.ist": true,
+    "**/*.fdb_latexmk": true,
+    "**/*.vrb": true
+},
 }
\ No newline at end of file