diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-04 18:36:36 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-04 18:36:36 +0200 |
commit | d77a7841f178d50d30fcaed05d1efc79f191d66d (patch) | |
tree | 62b1bbd097b1f8375dea7c6429f988ee46430a51 | |
parent | 08cf75e333b830a1450162390cd913b268cd3124 (diff) |
hide LaTeX output files in vscode
-rw-r--r-- | .vscode/settings.json | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json index 478283a..72f0e6b 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -13,5 +13,32 @@ "name": "latexmk", "tools": [ "latexmk" ] } - ] + ], + "files.exclude": { + "*.aux": true, + "*.bbl": true, + "*.bcf": true, + "*.blg": true, + "*.fdb_latexmk": true, + "*.fls": true, + "*.out": true, + "*.run.xml": true, + "*.synctex.gz": true, + "*.toc": true, + "*.synctex(busy)": true, + "*.lof": true, + "*.lot": true, + "*.glo": true, + "*.gls": true, + "*.glg": true, + "*.ist": true, + "*.acn": true, + "*.pytxcode": true, + "*.glstex": true, + "*.cb": true, + "*.cb2": true, + "*.d": true, + "*.nav": true, + "*.snm": true + } } |