Skip to content

Commit

Permalink
Update settings.json
Browse files Browse the repository at this point in the history
Signed-off-by: KhulnaSoft bot <[email protected]>
  • Loading branch information
khulnasoft-bot authored Aug 31, 2024
1 parent 656a812 commit 42617f9
Showing 1 changed file with 62 additions and 15 deletions.
77 changes: 62 additions & 15 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,64 @@
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"out": true // set this to true to hide the "out" folder with the compiled JS files
},
"search.exclude": {
"out/**": true // set this to false to include "out" folder in search results
},
"typescript.tsdk": "./node_modules/typescript/lib", // we want to use the TS server from our node_modules folder to control its version
"typescript.preferences.importModuleSpecifier": "relative",
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
]
"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 42617f9

Please sign in to comment.