Skip to content

Instantly share code, notes, and snippets.

@HateFindingNames
Last active March 30, 2025 13:21
Show Gist options
  • Select an option

  • Save HateFindingNames/3f15ebad7c914c8ab0f78981fa6146b5 to your computer and use it in GitHub Desktop.

Select an option

Save HateFindingNames/3f15ebad7c914c8ab0f78981fa6146b5 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"window.zoomLevel": 1,
"[python]": {
"editor.formatOnType": true
},
"workbench.startupEditor": "none",
"markdown-preview-enhanced.previewTheme": "github-dark.css",
"terminal.integrated.defaultProfile.windows": "Command Prompt",
"jupyter.askForKernelRestart": false,
"editor.fontFamily": "Fira Mono Regular",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"explorer.confirmDelete": false,
"telemetry.telemetryLevel": "off",
"latex-workshop.view.pdf.viewer": "browser",
"latex-workshop.view.pdf.color.dark.backgroundColor": "#1f1f1f",
"latex-workshop.latex.recipes": [
{
"name": "latexmk 🔃 no GS",
"tools": [
"latexmk"
]
},
{
"name": "Makeindex",
"tools": [
"makeindex"
]
},
{
"name": "biber only",
"tools": [
"biber"
]
},
// {
// "name": "lualatex",
// "tools": [
// "lualatexmk"
// ]
// },
{
"name": "latexmk ➞ biber ➞ latexmk × 2",
"tools": [
"latexmk",
"biber",
"makeindex",
"latexmk",
"latexmk",
"ghostscript"
]
},
{
"name": "compress pdf",
"tools": [
"ghostscript"
]
},
{
"name": "latexmk debug mode",
"tools": [
"latexmk-debugmode"
]
}
],
"latex-workshop.latex.tools": [
{
"name": "ghostscript",
"command": "gswin64c.exe",
"args": [
"-sDEVICE=pdfwrite",
"-dCompatibilityLevel=1.5",
"-dPDFSETTINGS=/printer",
"-dQUIET",
"-o%DOCFILE%_compressed.pdf",
"%OUTDIR%/%DOCFILE%.pdf"
],
"env": {}
},
{
"name": "latexmk-here",
"command": "latexmk",
"args": [
"-shell-escape",
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"-outdir=%OUTDIR%",
"%DOC%"
],
"env": {}
},
{
"name": "latexmk",
"command": "latexmk",
"args": [
"-shell-escape",
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"-outdir=%OUTDIR%",
"-auxdir=%OUTDIR%/buildfiles",
"%DOC%"
],
"env": {}
},
{
"name": "latexmk-debugmode",
"command": "latexmk",
"args": [
"-shell-escape",
"-synctex=1",
"-h",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"-outdir=%OUTDIR%",
"-auxdir=%OUTDIR%/buildfiles",
"%DOC%"
],
"env": {}
},
{
"name": "makeindex",
"command": "makeindex",
"args": [
"buildfiles/%DOCFILE%.nlo",
"-s",
"nomencl.ist",
"-o",
"buildfiles/%DOCFILE%.nls"
// "buildfiles/%DOCFILE%.nlo"
]
},
{
"name": "biber",
"command": "biber",
"args": [
"%DOCFILE%"
]
},
{
"name": "lualatexmk",
"command": "latexmk",
"args": [
"-shell-escape",
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-lualatex",
"-outdir=%OUTDIR%",
"-auxdir=%OUTDIR%/buildfiles",
"%DOC%"
],
"env": {}
},
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"-shell-escape",
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%/buildfiles"
],
"env": {}
},
{
"name": "bibtex",
"command": "bibtex",
"args": [
"%DOCFILE%"
],
"env": {}
},
],
"editor.wordWrap": "on",
"editor.wordWrapColumn": 100
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment