aboutsummaryrefslogtreecommitdiff
path: root/.vscode/settings.json
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-09-04 18:36:36 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-09-04 18:36:36 +0200
commitd77a7841f178d50d30fcaed05d1efc79f191d66d (patch)
tree62b1bbd097b1f8375dea7c6429f988ee46430a51 /.vscode/settings.json
parent08cf75e333b830a1450162390cd913b268cd3124 (diff)
hide LaTeX output files in vscode
Diffstat (limited to '.vscode/settings.json')
-rw-r--r--.vscode/settings.json29
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
+ }
}