diff options
Diffstat (limited to 'dot_config')
-rw-r--r-- | dot_config/i3/config | 3 | ||||
-rw-r--r-- | dot_config/private_Code/User/settings.json | 109 |
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 | ||
426 | exec --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 | ||