Skip to content

Commit

Permalink
duplicate VSCode settings for running locally
Browse files Browse the repository at this point in the history
  • Loading branch information
Mearman committed Oct 1, 2023
1 parent 8591856 commit b7524a4
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"recommendations": [
"James-Yu.latex-workshop",
"GitHub.copilot",
// Remove the line below if you do not want Live-Collaboration Feature
"ms-vsliveshare.vsliveshare",
// Uncomment the line below if you do not want LanguageTool Support
// "valentjn.vscode-ltex",
// Remove the line below if you do not want Grammarly
"znck.grammarly"
]
}
64 changes: 64 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
{
"latex-workshop.latex.clean.fileTypes": [
"*.aux",
"*.bbl",
"*.blg",
"*.idx",
"*.ind",
"*.lof",
"*.lot",
"*.out",
"*.toc",
"*.acn",
"*.acr",
"*.alg",
"*.glg",
"*.glo",
"*.gls",
"*.fls",
"*.log",
"*.fdb_latexmk",
"*.snm",
"*.synctex(busy)",
"*.synctex.gz(busy)",
"*.nav",
"*.vrb",
"*.gz", // Added Manually
"*.bcf", // Added Manually
"*.nlo", // Added Manually
"*.run.xml" // Added Manually
],
// Edit the following property to change export directory
"latex-workshop.latex.outDir": "./PDF",
"latex-workshop.latex.autoClean.run": "onBuilt",
"latex-workshop.latex.build.forceRecipeUsage": false,
"latex-workshop.synctex.afterBuild.enabled": true,
"latex-workshop.view.pdf.viewer": "tab",
"latex-workshop.latex.clean.subfolder.enabled": true,
"latex-workshop.latex.magic.args": [
"-output-directory=PDF", // to change the output directory
"%DOC%"
],
// Remove / comment the next 3 lines to remove dark view for pdf
"latex-workshop.view.pdf.color.dark.pageColorsBackground": "#171717", // For Dark Viewwer
"latex-workshop.latex.autoBuild.run": "never",
"latex-workshop.view.pdf.color.dark.pageColorsForeground": "#FFFFFF", // For Dark Viewer
"latex-workshop.view.pdf.color.dark.backgroundColor": "#171717", // For Dark Viewer
"editor.formatOnSave": true,
"latex-workshop.latex.pdfWatch.delay": 500,
//"latex-workshop.latex.watch.delay": 500, // Deprecated. See here: https://github.com/sanjib-sen/WebLaTex/issues/8
"latex-workshop.codespaces.portforwarding.openDelay": 20000,
"grammarly.files.include": [
"**/*.tex"
],
// Remove the following to check .md files with Grammarly.
"grammarly.files.exclude": [
"**/*.md"
],
"grammarly.selectors": [
{
"language": "latex",
"scheme": "file"
}
]
}

0 comments on commit b7524a4

Please sign in to comment.