This repository has been archived by the owner on Sep 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
settings.json
104 lines (104 loc) · 3.02 KB
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"editor.fontFamily": "Fira Code Medium",
"editor.fontLigatures": true,
"editor.suggestSelection": "first",
"editor.acceptSuggestionOnEnter": "off",
"editor.suggest.snippetsPreventQuickSuggestions": false,
"vim.vimrc.enable": false,
"vim.easymotion": true,
"vim.surround": true,
"vim.insertModeKeyBindings": [
{
"before": ["j", "k"],
"after": ["<Esc>"]
}
],
"vim.handleKeys": {
"<C-c>": false,
"<C-v>": false,
"<C-y>": false,
"<C-z>": false,
"<C-x>": false,
"<C-a>": false
},
"latex-utilities.liveReformat.enabled": false,
"latex-utilities.message.update.show": false,
"latex-utilities.texdef.enabled": false,
"latex-utilities.formattedPaste.image.template": [
"\\begin{center}",
"\t\\includegraphics[width=${1:8}cm]{${2:${imageFileName}}}",
"\\end{center}",
"$0"
],
"latex-workshop.view.pdf.viewer": "tab",
"latex-workshop.chktex.run": "onSave",
"latex-workshop.chktex.delay": 2000,
"latex-workshop.latex.autoBuild.run": "never",
"latex-workshop.intellisense.package.enabled": true,
"latex-workshop.intellisense.unimathsymbols.enabled": true,
"latex-workshop.message.update.show": false,
"latex-workshop.mathpreviewpanel.editorGroup": "above",
"latex-workshop.synctex.afterBuild.enabled": true,
"latex-workshop.latex.tools": [
{
"name": "latexmk",
"command": "latexmk",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"--shell-escape",
"-outdir=%OUTDIR%",
"%DOC%"
],
"env": {}
},
{
"name": "latexmk-clean",
"command": "latexmk",
"args": [
"-synctex=1",
"-pdf",
"-c",
"--shell-escape",
"-outdir=%OUTDIR%",
"%DOC%"
],
"env": {}
}
],
"latex-workshop.latex.recipes": [
{
"name": "latexmk 🔃",
"tools": [
"latexmk",
"latexmk-clean"
]
}
],
"cSpell.languageSettings": [
{
"languageId": "latex",
"patterns": [
{
"name": "LaTexMinted",
"pattern": "/\\\\begin{minted}[^$]*?\\\\end{minted}/gm",
"description": "Match against all LaTex Minted environments"
}
],
"ignoreRegExpList": ["LaTexMinted"]
}
],
"[latex]": {
"editor.quickSuggestionsDelay": 0,
"editor.wordBasedSuggestions": false,
"editor.rulers": [110],
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 110,
"files.trimTrailingWhitespace": false
},
"[hsnips]": {
"files.trimTrailingWhitespace": false
}
}