Update settings from , profile « main »

main
Quentin Duchemin 2025-10-18 21:04:20 +02:00
parent 2e6715016e
commit 888f6483a4
2 changed files with 51 additions and 3 deletions

View File

@ -20,6 +20,8 @@ enabled:
uuid: a13b548d-0631-44fb-99ee-b398ab61c9bc uuid: a13b548d-0631-44fb-99ee-b398ab61c9bc
- id: earshinov.simple-alignment - id: earshinov.simple-alignment
uuid: 7b9e492f-afa3-4c1a-9c02-a6ab67fd3552 uuid: 7b9e492f-afa3-4c1a-9c02-a6ab67fd3552
- id: houkanshan.vscode-markdown-footnote
uuid: 67d20411-9a51-4004-8982-1f777b4560fd
- id: huntertran.auto-markdown-toc - id: huntertran.auto-markdown-toc
uuid: 0a536459-8968-4c18-a052-cc505a9ea555 uuid: 0a536459-8968-4c18-a052-cc505a9ea555
- id: James-Yu.latex-workshop - id: James-Yu.latex-workshop
@ -60,5 +62,7 @@ enabled:
uuid: f6dbd813-b0a0-42c1-90ea-10dde9d925a7 uuid: f6dbd813-b0a0-42c1-90ea-10dde9d925a7
- id: streetsidesoftware.code-spell-checker-french - id: streetsidesoftware.code-spell-checker-french
uuid: d18e0c5a-855e-433e-996a-e0fb4c107213 uuid: d18e0c5a-855e-433e-996a-e0fb4c107213
- id: vv13.markdown-auto-preview
uuid: 61d5af70-fe6f-440c-b7b8-20445a60665c
- id: zokugun.cron-tasks - id: zokugun.cron-tasks
uuid: b7bbbbd5-7a39-4312-87aa-ef6a41de67fb uuid: b7bbbbd5-7a39-4312-87aa-ef6a41de67fb

View File

@ -4,7 +4,7 @@
"security.workspace.trust.untrustedFiles": "open", "security.workspace.trust.untrustedFiles": "open",
"[python]": { "[python]": {
"editor.defaultFormatter": "ms-python.black-formatter", "editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true "editor.formatOnSave": false
}, },
"cSpell.userWords": [ "cSpell.userWords": [
"enthéogènes", "enthéogènes",
@ -51,7 +51,6 @@
// See https://www.reddit.com/r/vscode/comments/pqfpnc/i_realized_why_i_was_annoyed_with_vscode_and/ // See https://www.reddit.com/r/vscode/comments/pqfpnc/i_realized_why_i_was_annoyed_with_vscode_and/
"editor.tabCompletion": "on", "editor.tabCompletion": "on",
"editor.quickSuggestionsDelay": 500, "editor.quickSuggestionsDelay": 500,
"editor.suggestOnTriggerCharacters": false,
// See https://stackoverflow.com/questions/60175608/visual-studio-code-and-jinja-templates // See https://stackoverflow.com/questions/60175608/visual-studio-code-and-jinja-templates
"emmet.includeLanguages": { "emmet.includeLanguages": {
"jinja-py": "py", "jinja-py": "py",
@ -94,5 +93,50 @@
}, },
"[github-actions-workflow]": { "[github-actions-workflow]": {
"editor.defaultFormatter": "redhat.vscode-yaml" "editor.defaultFormatter": "redhat.vscode-yaml"
} },
"workbench.settings.showAISearchToggle": false,
"chat.disableAIFeatures": true,
"editor.guides.bracketPairs": true,
"editor.guides.bracketPairsHorizontal": true,
"editor.language.colorizedBracketPairs": [],
"editor.autoClosingQuotes": "beforeWhitespace",
"editor.autoIndentOnPaste": true,
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"editor.codeLens": false,
"editor.experimental.treeSitterTelemetry": true,
"editor.glyphMargin": false,
"editor.semanticHighlighting.enabled": true,
"editor.wordWrap": "wordWrapColumn",
"editor.formatOnPaste": true,
"editor.formatOnSaveMode": "modificationsIfAvailable",
"diffEditor.experimental.showMoves": true,
"diffEditor.experimental.useTrueInlineView": true,
"diffEditor.renderSideBySide": false,
"diffEditor.wordWrap": "on",
"editor.minimap.autohide": "mouseover",
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.inlineSuggest.experimental.emptyResponseInformation": false,
"editor.suggest.shareSuggestSelections": true,
"editor.suggestSelection": "recentlyUsedByPrefix",
"editor.wordBasedSuggestions": "allDocuments",
"files.autoGuessEncoding": true,
"files.enableTrash": false,
"files.hotExit": "onExitAndWindowClose",
"files.readonlyFromPermissions": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"task.allowAutomaticTasks": "off",
"chat.agent.enabled": false,
"telemetry.feedback.enabled": false,
"editor.minimap.enabled": false,
"editor.renderFinalNewline": "off",
"editor.selectionHighlightMultiline": true,
"editor.inlineSuggest.edits.showCollapsed": true,
"markdown.occurrencesHighlight.enabled": true,
"markdown.suggest.paths.includeWorkspaceHeaderCompletions": "onSingleOrDoubleHash",
"markdown.updateLinksOnFileMove.enabled": "prompt",
"markdown.validate.enabled": true,
"markdown-toc.anchorMode": "gitlab.com",
"markdown-auto-preview.autoClosePreviewWindow": true,
"editor.wordWrapColumn": 100
} }