Skip to content

Instantly share code, notes, and snippets.

@schnell18
Created April 4, 2020 13:11
Show Gist options
  • Save schnell18/6fc9e9287367a49cb9bcceffd89cfa97 to your computer and use it in GitHub Desktop.
Save schnell18/6fc9e9287367a49cb9bcceffd89cfa97 to your computer and use it in GitHub Desktop.
VS Code LaTeX Workshop manjaro settings /w okular
{
"latex-workshop.latex.autoBuild.run": "onFileChange",
"latex-workshop.message.error.show": true,
"latex-workshop.message.warning.show": true,
"latex-workshop.latex.tools": [{
"name": "xelatex",
"command": "xelatex",
"args": [
"-synctex=1",
"-shell-escape",
"-interaction=nonstopmode",
"-file-line-error",
"%DOCFILE%"
]
},
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"-synctex=1",
"-shell-escape",
"-interaction=nonstopmode",
"-file-line-error",
"%DOCFILE%"
]
},
{
"name": "bibtex",
"command": "bibtex",
"args": [
"%DOCFILE%"
]
}],
"latex-workshop.latex.recipes": [{
"name": "xelatex",
"tools": [
"xelatex"
],
},
{
"name": "pdflatex",
"tools": [
"pdflatex"
]
},
{
"name": "xe->bib->xe->xe",
"tools": [
"xelatex",
"bibtex",
"xelatex",
"xelatex"
]
},
{
"name": "pdf->bib->pdf->pdf",
"tools": [
"pdflatex",
"bibtex",
"pdflatex",
"pdflatex"
]
}],
"latex-workshop.view.pdf.viewer": "external",
"latex-workshop.view.pdf.external.viewer.command": "okular",
"latex-workshop.view.pdf.external.viewer.args": [ "--unique", "%PDF%" ],
"latex-workshop.view.pdf.external.synctex.command": "okular",
"latex-workshop.view.pdf.external.synctex.args": [ "--unique", "%PDF%#src:%LINE%%TEX%"],
"terminal.integrated.shell.linux": "/bin/bash",
"terminal.explorerKind": "external",
"files.exclude": {
"**/_minted*": true,
"**/.vagrant": true,
"**/*.aux": true,
"**/*.bak": true,
"**/*.bbl": true,
"**/*.blg": true,
"**/*.lof": true,
"**/*.log": true,
"**/*.lol": true,
"**/*.lot": true,
"**/*.nav": true,
"**/*.out": true,
"**/*.snm": true,
"**/*.swo": true,
"**/*.swp": true,
"**/*.toc": true,
"**/*.vrb": true,
"**/*.xwm": true
},
"workbench.colorTheme": "Monokai",
"window.zoomLevel": 0,
"editor.fontSize": 16,
"workbench.iconTheme": "material-icon-theme",
"go.formatTool": "goimports",
"go.useLanguageServer": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment