Created
June 30, 2023 08:30
-
-
Save martinwoodward/3b9eb91f3975061d7300c1172d8297a6 to your computer and use it in GitHub Desktop.
Copilot Demo settings for VSCode
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
{ | |
"editor.inlineSuggest.enabled": true, | |
"workbench.colorTheme": "Default Dark+", | |
"window.zoomLevel": 1, | |
"editor.minimap.enabled": false, // Disable minimap for clarity | |
"vsintellicode.python.completionsEnabled": false, | |
"editor.quickSuggestionsDelay": 1000, // Delay built in VS Code intellisense so doesn't confuse on what is Copilot | |
"editor.lightbulb.enabled": false, // Disable lightbulb autofixes for clarity | |
"chat.experimental.quickQuestion.enable": true, // Experimental feature in May 2023 release of insiders | |
"pylint.args": [ | |
"disable-msg=C0103" | |
], // Disable pylint naming convention warnings | |
"git.confirmSync": false, // Disable git sync confirmation | |
"git.enableSmartCommit": true, // Commit all changes when they are none explicitly stages | |
"git.autofetch": true, // Keep in sync with upstream | |
"github.copilot.enable": { | |
"*": true, | |
"plaintext": false, | |
"markdown": true, | |
"scminput": false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment