From d8ecd35ee965c3ea3827ab0c36bb2bef85699eef Mon Sep 17 00:00:00 2001 From: clarkzjw Date: Wed, 5 Apr 2023 22:28:08 -0700 Subject: VSCode: add vscode settings.json --- dot_config/private_Code/User/settings.json | 109 +++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 dot_config/private_Code/User/settings.json (limited to 'dot_config/private_Code/User') diff --git a/dot_config/private_Code/User/settings.json b/dot_config/private_Code/User/settings.json new file mode 100644 index 0000000..b2375e1 --- /dev/null +++ b/dot_config/private_Code/User/settings.json @@ -0,0 +1,109 @@ +{ + "[python]": { + "editor.formatOnType": true + }, + "beancount.mainBeanFile": "Ledger.beancount", + "workbench.startupEditor": "none", + "beancount.fixedCJKWidth": true, + "latex-workshop.latex.recipe.default": "latexmk (xelatex)", + "latex-workshop.latex.tools": [ + { + "name": "latexmk", + "command": "latexmk", + "args": [ + "-synctex=1", + "-interaction=nonstopmode", + "-file-line-error", + "-pdf", + "-outdir=%OUTDIR%", + "%DOC%" + ], + "env": {} + }, + { + "name": "lualatexmk", + "command": "latexmk", + "args": [ + "-synctex=1", + "-interaction=nonstopmode", + "-file-line-error", + "-lualatex", + "-outdir=%OUTDIR%", + "%DOC%" + ], + "env": {} + }, + { + "name": "xelatexmk", + "command": "latexmk", + "args": [ + "-shell-escape", + "-synctex=1", + "-interaction=nonstopmode", + "-file-line-error", + "-xelatex", + "-outdir=%OUTDIR%", + "%DOC%" + ], + "env": {} + }, + { + "name": "pdflatex", + "command": "pdflatex", + "args": [ + "-synctex=1", + "-interaction=nonstopmode", + "-file-line-error", + "%DOC%" + ], + "env": {} + }, + { + "name": "bibtex", + "command": "bibtex", + "args": [ + "%DOCFILE%" + ], + "env": {} + } + ], + "git.openRepositoryInParentFolders": "never", + "editor.wordWrap": "on", + "latex-workshop.latex.recipes": [ + + + { + "name": "latexmk", + "tools": [ + "latexmk" + ] + }, + { + "name": "latexmk (xelatex)", + "tools": [ + "xelatexmk" + ] + }, + { + "name": "pdflatex -> bibtex -> pdflatex * 2", + "tools": [ + "pdflatex", + "bibtex", + "pdflatex", + "pdflatex" + ] + }, + ], + "editor.largeFileOptimizations": false, + "grammarly.config.documentDialect": "canadian", + "grammarly.files.include": [ + "**/readme.md", + "**/README.md", + "**/*.txt", + "**/*.tex" + ], + "git.showPushSuccessNotification": true, + "editor.inlineSuggest.enabled": true, + "window.titleBarStyle": "custom", + "workbench.colorTheme": "Theme Flat", +} \ No newline at end of file -- cgit v1.2.3