diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e43b0f9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_Store diff --git a/.vscode/settings.json b/.vscode/settings.json index d730f59..4e0293b 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,20 @@ { - "latex-workshop.latex.recipe.default": "latexmk (xelatex)" + "latex-workshop.latex.recipes": [ + { + "name": "Smart LaTeX Build", + "tools": ["smart-build"] + } + ], + "latex-workshop.latex.tools": [ + { + "name": "smart-build", + "command": "bash", + "args": [ + "%WORKSPACE_FOLDER%/build/build-latex-smart.sh", + "%DOC%" + ] + } + ], + "latex-workshop.latex.recipe.default": "Smart LaTeX Build", + "latex-workshop.formatting.latex": "latexindent" }