Skip to content

Instantly share code, notes, and snippets.

@sketchpunk
Created February 17, 2025 21:18
Show Gist options
  • Save sketchpunk/3e44fb6f9adae012338a79507d7bc301 to your computer and use it in GitHub Desktop.
Save sketchpunk/3e44fb6f9adae012338a79507d7bc301 to your computer and use it in GitHub Desktop.
VSCODE SETTINGS.JSON
{
// Disable copilot
"github.copilot.enable": {
"*": false,
"plaintext": false,
"markdown": false,
"scminput": false
},
// Fix NPM excution issues
// https://stackoverflow.com/questions/56199111/visual-studio-code-cmd-error-cannot-be-loaded-because-running-scripts-is-disabl
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell",
"args": ["-ExecutionPolicy", "Bypass"]
}
},
"terminal.integrated.defaultProfile.windows": "PowerShell",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment