aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclarkzjw <[email protected]>2023-04-05 22:28:08 -0700
committerclarkzjw <[email protected]>2023-04-05 22:28:08 -0700
commitd8ecd35ee965c3ea3827ab0c36bb2bef85699eef (patch)
tree14f47dd21a3cdc5b957bddc3f057172609fa08a7
parentfb6aec5faae1384ba46f0a4503d6b5724e2e82e6 (diff)
downloaddotfiles-d8ecd35ee965c3ea3827ab0c36bb2bef85699eef.tar.gz
VSCode: add vscode settings.json
-rw-r--r--dot_config/i3/config3
-rw-r--r--dot_config/private_Code/User/settings.json109
2 files changed, 112 insertions, 0 deletions
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
422# alternative if you installed aside with XFCE4: 422# alternative if you installed aside with XFCE4:
423#exec --no-startup-id env GDK_SCALE=2 /usr/lib/xfce4/notifyd/xfce4-notifyd & 423#exec --no-startup-id env GDK_SCALE=2 /usr/lib/xfce4/notifyd/xfce4-notifyd &
424 424
425# Mastodon client
426exec --no-startup-id tmux new -d -s toot tut
427
425# autotiling script 428# autotiling script
426# https://github.com/nwg-piotr/autotiling 429# https://github.com/nwg-piotr/autotiling
427# `yay -S autotiling ;) (it is in AUR) 430# `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 @@
1{
2 "[python]": {
3 "editor.formatOnType": true
4 },
5 "beancount.mainBeanFile": "Ledger.beancount",
6 "workbench.startupEditor": "none",
7 "beancount.fixedCJKWidth": true,
8 "latex-workshop.latex.recipe.default": "latexmk (xelatex)",
9 "latex-workshop.latex.tools": [
10 {
11 "name": "latexmk",
12 "command": "latexmk",
13 "args": [
14 "-synctex=1",
15 "-interaction=nonstopmode",
16 "-file-line-error",
17 "-pdf",
18 "-outdir=%OUTDIR%",
19 "%DOC%"
20 ],
21 "env": {}
22 },
23 {
24 "name": "lualatexmk",
25 "command": "latexmk",
26 "args": [
27 "-synctex=1",
28 "-interaction=nonstopmode",
29 "-file-line-error",
30 "-lualatex",
31 "-outdir=%OUTDIR%",
32 "%DOC%"
33 ],
34 "env": {}
35 },
36 {
37 "name": "xelatexmk",
38 "command": "latexmk",
39 "args": [
40 "-shell-escape",
41 "-synctex=1",
42 "-interaction=nonstopmode",
43 "-file-line-error",
44 "-xelatex",
45 "-outdir=%OUTDIR%",
46 "%DOC%"
47 ],
48 "env": {}
49 },
50 {
51 "name": "pdflatex",
52 "command": "pdflatex",
53 "args": [
54 "-synctex=1",
55 "-interaction=nonstopmode",
56 "-file-line-error",
57 "%DOC%"
58 ],
59 "env": {}
60 },
61 {
62 "name": "bibtex",
63 "command": "bibtex",
64 "args": [
65 "%DOCFILE%"
66 ],
67 "env": {}
68 }
69 ],
70 "git.openRepositoryInParentFolders": "never",
71 "editor.wordWrap": "on",
72 "latex-workshop.latex.recipes": [
73
74
75 {
76 "name": "latexmk",
77 "tools": [
78 "latexmk"
79 ]
80 },
81 {
82 "name": "latexmk (xelatex)",
83 "tools": [
84 "xelatexmk"
85 ]
86 },
87 {
88 "name": "pdflatex -> bibtex -> pdflatex * 2",
89 "tools": [
90 "pdflatex",
91 "bibtex",
92 "pdflatex",
93 "pdflatex"
94 ]
95 },
96 ],
97 "editor.largeFileOptimizations": false,
98 "grammarly.config.documentDialect": "canadian",
99 "grammarly.files.include": [
100 "**/readme.md",
101 "**/README.md",
102 "**/*.txt",
103 "**/*.tex"
104 ],
105 "git.showPushSuccessNotification": true,
106 "editor.inlineSuggest.enabled": true,
107 "window.titleBarStyle": "custom",
108 "workbench.colorTheme": "Theme Flat",
109} \ No newline at end of file
Powered by cgit v1.2.3 (git 2.41.0)