|
1 | 1 | { |
2 | | - // "[latex]": { |
3 | | - // "editor.formatOnSave": true, |
4 | | - // }, |
| 2 | + "[latex]": { |
| 3 | + "editor.formatOnSave": false, |
| 4 | + "editor.formatOnPaste": false, |
| 5 | + "editor.formatOnType": false |
| 6 | + }, |
5 | 7 | "files.eol": "\n", |
| 8 | + "files.encoding": "utf8", |
6 | 9 | "files.insertFinalNewline": true, |
7 | 10 | "files.trimTrailingWhitespace": true, |
8 | 11 | "editor.detectIndentation": false, |
9 | 12 | "editor.insertSpaces": true, |
10 | 13 | "editor.tabSize": 2, |
11 | | - "git.autofetch": false, |
| 14 | + "git.autofetch": true, |
12 | 15 | "git.autorefresh": true, |
13 | 16 | "git.fetchOnPull": false, |
14 | 17 | "git.rebaseWhenSync": true, |
15 | 18 | "git.useForcePushWithLease": true, |
16 | | - // questi due setting sono per chi utilizza direttamente vs code per scrivere i commit |
17 | 19 | "git.inputValidationSubjectLength": 72, |
18 | 20 | "git.inputValidationLength": 100, |
19 | 21 | "git-graph.dialog.rebase.launchInteractiveRebase": false, |
|
27 | 29 | "--synctex=1", |
28 | 30 | "--interaction=nonstopmode", |
29 | 31 | "--c-style-errors", |
30 | | - // XXX N.B.: --shell-escape costituisce un rischio alla sicurezza perché consente a LaTeX di eseguire snippet di codice potenzialmente dannoso. Per noi la flag è necessaria per poter compilare correttamente i diagrammi plantuml |
31 | 32 | "--shell-escape", |
32 | | - // XXX opzione rimossa perché entra in conflitto con il package plantuml |
33 | | - // "--output-directory=%OUTDIR%", |
34 | 33 | "%DOC%" |
35 | 34 | ], |
36 | 35 | "env": {} |
|
46 | 45 | } |
47 | 46 | ], |
48 | 47 | "latex-workshop.chktex.enabled": true, |
49 | | - "latex-workshop.chktex.run": "onSave", |
| 48 | + "latex-workshop.chktex.run": "onType", |
50 | 49 | "latex-workshop.intellisense.package.enabled": true, |
51 | 50 | "latex-workshop.latex.clean.subfolder.enabled": true, |
52 | 51 | "latex-workshop.latexindent.args": [ |
|
55 | 54 | "%TMPFILE%", |
56 | 55 | "-y=defaultIndent: ' '" |
57 | 56 | ], |
| 57 | + "latex-workshop.view.outline.sections": [ |
| 58 | + "section", |
| 59 | + "subsection", |
| 60 | + "subsubsection", |
| 61 | + "paragraph", |
| 62 | + "subparagraph" |
| 63 | + ], |
58 | 64 | "spellright.documentTypes": [ |
59 | 65 | "diagram", |
60 | 66 | "latex", |
|
0 commit comments