From 9d485a8cc41b77c53000067570033e45399cef94 Mon Sep 17 00:00:00 2001 From: Pedro Cabral Date: Sat, 21 Feb 2026 00:05:36 +0100 Subject: [PATCH] ignore .DS_Store added blank line to gitignore added blank line to settings --- .gitignore | 1 + .vscode/settings.json | 19 ++++++++++++++++++- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 .gitignore 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" }