arch-setup/files/Code - OSS/User/settings.json

64 lines
1.7 KiB
JSON

{
// ==== Allgemeines ====
"security.workspace.trust.untrustedFiles": "open",
"workbench.colorTheme": "Catppuccin Mocha",
// ==== LaTeX Workshop ====
"latex-workshop.latex.tools": [
{
"name": "tectonic",
"command": "tectonic",
"args": [
"--synctex",
"--keep-intermediates",
"--keep-logs",
"%DOCFILE%"
]
}
],
"latex-workshop.latex.recipes": [
{
"name": "tectonic",
"tools": ["tectonic"]
}
],
// Wann automatisch gebaut wird: bei Speichern oder Dateiänderung
"latex-workshop.latex.autoBuild.run": "onFileChange",
// Integrierte PDF-Preview in VS Code (alternativ siehe unten)
"latex-workshop.view.pdf.viewer": "tab",
// SyncTeX nach Build aktivieren (Vor/Rücksprung)
"latex-workshop.synctex.afterBuild.enabled": true,
// Aufräumen unnötiger Dateien nach Build
"latex-workshop.latex.clean.enabled": true,
"latex-workshop.latex.clean.fileTypes": [
"*.aux",
"*.log",
"*.out",
"*.synctex.gz",
"*.toc",
"_minted*"
],
// Intellisense & Completion
"latex-workshop.intellisense.package.enabled": true,
"latex-workshop.intellisense.triggers.latex": [
"\\",
"{",
","
],
// Optional: BibLaTeX Autovervollständigung
"latex-workshop.intellisense.bibtexJSON.replace": {},
// Optional: deutsche Rechtschreibung (wenn Spellchecker installiert)
"cSpell.language": "de,de-DE",
"cSpell.enabledLanguageIds": [
"latex",
"plaintext",
"markdown"
]
}