Created
February 17, 2025 21:18
-
-
Save sketchpunk/3e44fb6f9adae012338a79507d7bc301 to your computer and use it in GitHub Desktop.
VSCODE SETTINGS.JSON
This file contains 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
{ | |
// 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