Mise à jour de 'VSCode'
parent
0f02b2b735
commit
e1177a0ebc
1 changed files with 66 additions and 2 deletions
68
VSCode.md
68
VSCode.md
|
@ -1,3 +1,67 @@
|
|||
# Liste des paramètres VSCode
|
||||
- [Nerd Font](https://notulensiku.com/2019/02/fix-integrated-terminal-font-vscode/)
|
||||
- [Minted (LaTeX)](https://leportella.com/minted-vscode/)
|
||||
## Éditeur
|
||||
- `"editor.wordWrap": "on"`
|
||||
- `"diffEditor.ignoreTrimWhitespace": false`
|
||||
- `"files.insertFinalNewline": true`
|
||||
- `"files.trimFinalNewlines": true`
|
||||
- `"files.trimTrailingWhitespace": true`
|
||||
- Apparence : [Palenight High Contrast](https://marketplace.visualstudio.com/items?itemName=equinusocio.vsc-community-material-theme) et [icônes](https://marketplace.visualstudio.com/items?itemName=PKief.material-icon-theme)
|
||||
- `"extensions.ignoreRecommendations": true`
|
||||
- `"terminal.integrated.defaultProfile.linux": "fish"`, j'utilises Fish et pas bash
|
||||
- [`"terminal.integrated.fontFamily": "MesloLGM Nerd Font"`](https://notulensiku.com/2019/02/fix-integrated-terminal-font-vscode/), pour que [Nerd Font](https://www.nerdfonts.com/) fonctionne
|
||||
- `"telemetry.enableCrashReporter": false`
|
||||
- `"telemetry.enableTelemetry": false`
|
||||
- `"telemetry.telemetryLevel": "off"`
|
||||
- `"settingsSync.keybindingsPerPlatform": false`, mes raccourcis changent entre Linux et Windows/WSL
|
||||
|
||||
## Éxtensions
|
||||
- `"remote.SSH.configFile": "\\\\wsl.localhost\\Ubuntu\\home\\anri\\.ssh\\config"`, pour faire fonctionné le SSH sous WSL (a noté que vous devez probablement changé l'utilisateur si vous reprenez le même settings
|
||||
- je précise la plateforme d'une machine pour le SSH
|
||||
```json
|
||||
"remote.SSH.remotePlatform": {
|
||||
"bocal": "linux"
|
||||
}
|
||||
```
|
||||
|
||||
- `"git.confirmSync": false`
|
||||
- `"git.enableSmartCommit": true`
|
||||
|
||||
- `"latex-workshop.bibtex-format.tab": "4 spaces"`, j'aime les 4 espaces
|
||||
- pour [faire fonctionner](https://leportella.com/minted-vscode/) [Minted](https://tug.ctan.org/macros/latex/contrib/minted/minted.pdf)
|
||||
```json
|
||||
"latex-workshop.latex.tools": [
|
||||
{
|
||||
"name": "latexmk",
|
||||
"command": "latexmk",
|
||||
"args": [
|
||||
"--shell-escape",
|
||||
"-synctex=1",
|
||||
"-interaction=nonstopmode",
|
||||
"-file-line-error",
|
||||
"-pdf",
|
||||
"-outdir=%OUTDIR%",
|
||||
"%DOC%"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "pdflatex",
|
||||
"command": "pdflatex",
|
||||
"args": [
|
||||
"--shell-escape",
|
||||
"-synctex=1",
|
||||
"-interaction=nonstopmode",
|
||||
"-file-line-error",
|
||||
"%DOC%"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "bibtex",
|
||||
"command": "bibtex",
|
||||
"args": [
|
||||
"%DOCFILE%"
|
||||
]
|
||||
}
|
||||
]
|
||||
```
|
||||
- `"latex-workshop.message.warning.show": false`, c'est horripilant
|
||||
- `"latex-workshop.view.pdf.viewer": "tab"`
|
Loading…
Reference in a new issue