Skip to content

Instantly share code, notes, and snippets.

@martinwoodward
Created June 30, 2023 08:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save martinwoodward/3b9eb91f3975061d7300c1172d8297a6 to your computer and use it in GitHub Desktop.
Save martinwoodward/3b9eb91f3975061d7300c1172d8297a6 to your computer and use it in GitHub Desktop.
Copilot Demo settings for VSCode
{
"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