Skip to content

Commit f02a696

Browse files
committed
Add VS Code settings
1 parent df84abe commit f02a696

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"james-yu.latex-workshop"
4+
]
5+
}

.vscode/settings.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"latex-workshop.latex.recipes": [
3+
{
4+
"name": "latexmk (lualatex)",
5+
"tools": [
6+
"lualatexmk"
7+
]
8+
},
9+
],
10+
"files.exclude": {
11+
"**/**.aux": true,
12+
"**/**.bbl": true,
13+
"**/**.bcf": true,
14+
"**/**.blg": true,
15+
"**/**.fdb_latexmk": true,
16+
"**/**.fls": true,
17+
"**/**.log": true,
18+
"**/**.out": true,
19+
"**/**.run.xml": true,
20+
"**/**.synctex.gz": true,
21+
"**/**.synctex(busy)": true,
22+
"**/**.toc": true
23+
},
24+
"editor.formatOnSave": true,
25+
"files.insertFinalNewline": true,
26+
"files.trimFinalNewlines": true,
27+
"files.trimTrailingWhitespace": true,
28+
}

0 commit comments

Comments
 (0)