Last active
September 19, 2023 16:46
-
-
Save pamelafox/8a3aaa504effd9f0e137c79f20bfe176 to your computer and use it in GitHub Desktop.
Pamela's VS Code settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"html.autoCreateQuotes": false, | |
"editor.autoClosingBrackets": "never", | |
"html.autoClosingTags": false, | |
"cmake.configureOnOpen": true, | |
"editor.quickSuggestions": { | |
"other": "off" | |
}, | |
"azureFunctions.showPysteinModel": true, | |
"workbench.colorTheme": "Solarized Light", | |
"workbench.panel.opensMaximized": "always", | |
"markdownlint.customRules": [ | |
"{docsmsft.docs-linting}/markdownlint-custom-rules/rules.js" | |
], | |
"markdownlint.config": { | |
"MD028": false, | |
"MD025": { | |
"front_matter_title": "" | |
} | |
}, | |
"yaml.schemas": { | |
"file:///Users/pamelafox/.vscode/extensions/docsmsft.docs-yaml-0.2.9/out/yaml-support/toc.schema.json": "/toc\\.yml/i" | |
}, | |
"docs-build.userType": "Microsoft Employee", | |
"redhat.telemetry.enabled": false, | |
"cSpell.enabled": false, | |
"editor.minimap.enabled": false, | |
"editor.inlineSuggest.enabled": true, | |
"github.copilot.enable": { | |
"*": true, | |
"plaintext": true, | |
"markdown": true, | |
"scminput": false, | |
"yaml": true, | |
"html": true | |
}, | |
"dev.containers.defaultExtensions": [ | |
"GitHub.copilot", | |
"GitHub.copilot-chat" | |
], | |
"[python]": { | |
"editor.formatOnSave": true, | |
"editor.codeActionsOnSave": { | |
"source.fixAll": true | |
}, | |
"editor.defaultFormatter": "ms-python.black-formatter" | |
}, | |
"azureFunctions.showProjectWarning": false, | |
"editor.fontSize": 18, | |
"terminal.integrated.fontSize": 18, | |
"terminal.integrated.enableMultiLinePasteWarning": false, | |
"settingsSync.ignoredExtensions": [ | |
"ms-vscode-remote.remote-containers", | |
"github.copilot-nightly" | |
], | |
"prompt-flow.enableTelemetry": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment