forked from sanjib-sen/WebLaTex
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
duplicate VSCode settings for running locally
- Loading branch information
Showing
2 changed files
with
76 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
] | ||
} |