Updated VScode configuration
authorThomas Pietrzak <thomas.pietrzak@gmail.com>
Mon, 18 Oct 2021 15:03:13 +0000 (17:03 +0200)
committerThomas Pietrzak <thomas.pietrzak@gmail.com>
Mon, 18 Oct 2021 15:03:13 +0000 (17:03 +0200)
.vscode/settings.json

index 7c263ef2e86091d48e7a22f73f347b9737a1cf4c..1529be7e05eeb4fb064f98c2cd6d67f0a2fed5c0 100644 (file)
@@ -1,7 +1,8 @@
 {
-  "latex-workshop.latex.recipe.default": "xelatex bibtex",
+  "latex-workshop.latex.recipe.default": "latexmk (xelatex)",
   "latex-workshop.latex.autoBuild.run": "never",
   "latex-workshop.view.pdf.backgroundColor": "#333333",
+  "latex-workshop.latex.build.forceRecipeUsage": true,
   "latex-workshop.latex.tools": [
     {
       "name": "xelatex",
       "command": "latexmk",
       "args": [
           "-xelatex",
+          "-synctex=1",
+          "-file-line-error",
           "-shell-escape",
+          "-bibtex",
+          "-interaction=nonstopmode",
           //"-outdir=out",
           "hdrmain.tex"
       ]
     "**/*.ist": true,
     "**/*.fdb_latexmk": true,
     "**/*.vrb": true
-},
-"grammarly.overrides": [
-  {
-    "files": [
-      "**/tex/2-output.tex"
-    ],
-    "config": {
-      "audience": "general",
-      "dialect": "american",
-      "domain": "academic",
-      "emotions": [],
-      "goals": []
-    }
   }
-],
 }
\ No newline at end of file