diff --git a/profiles/main/data/extensions.yml b/profiles/main/data/extensions.yml index 07a8057..30a18af 100644 --- a/profiles/main/data/extensions.yml +++ b/profiles/main/data/extensions.yml @@ -20,6 +20,8 @@ enabled: uuid: a13b548d-0631-44fb-99ee-b398ab61c9bc - id: earshinov.simple-alignment uuid: 7b9e492f-afa3-4c1a-9c02-a6ab67fd3552 + - id: houkanshan.vscode-markdown-footnote + uuid: 67d20411-9a51-4004-8982-1f777b4560fd - id: huntertran.auto-markdown-toc uuid: 0a536459-8968-4c18-a052-cc505a9ea555 - id: James-Yu.latex-workshop @@ -60,5 +62,7 @@ enabled: uuid: f6dbd813-b0a0-42c1-90ea-10dde9d925a7 - id: streetsidesoftware.code-spell-checker-french uuid: d18e0c5a-855e-433e-996a-e0fb4c107213 + - id: vv13.markdown-auto-preview + uuid: 61d5af70-fe6f-440c-b7b8-20445a60665c - id: zokugun.cron-tasks uuid: b7bbbbd5-7a39-4312-87aa-ef6a41de67fb diff --git a/profiles/main/data/settings.json b/profiles/main/data/settings.json index acf64d7..f964af5 100644 --- a/profiles/main/data/settings.json +++ b/profiles/main/data/settings.json @@ -4,7 +4,7 @@ "security.workspace.trust.untrustedFiles": "open", "[python]": { "editor.defaultFormatter": "ms-python.black-formatter", - "editor.formatOnSave": true + "editor.formatOnSave": false }, "cSpell.userWords": [ "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/ "editor.tabCompletion": "on", "editor.quickSuggestionsDelay": 500, - "editor.suggestOnTriggerCharacters": false, // See https://stackoverflow.com/questions/60175608/visual-studio-code-and-jinja-templates "emmet.includeLanguages": { "jinja-py": "py", @@ -94,5 +93,50 @@ }, "[github-actions-workflow]": { "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 } \ No newline at end of file