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/i3/config | 3 + dot_config/private_Code/User/settings.json | 109 +++++++++++++++++++++++++++++ 2 files changed, 112 insertions(+) create mode 100644 dot_config/private_Code/User/settings.json diff --git a/dot_config/i3/config b/dot_config/i3/config index d269356..fff142f 100644 --- a/dot_config/i3/config +++ b/dot_config/i3/config @@ -422,6 +422,9 @@ exec --no-startup-id dunst --config ~/.config/dunst/dunstrc # alternative if you installed aside with XFCE4: #exec --no-startup-id env GDK_SCALE=2 /usr/lib/xfce4/notifyd/xfce4-notifyd & +# Mastodon client +exec --no-startup-id tmux new -d -s toot tut + # autotiling script # https://github.com/nwg-piotr/autotiling # `yay -S autotiling ;) (it is in AUR) 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