vscode更换国内源
时间: 2023-11-11 14:00:48 浏览: 335
vscode源码文件 vscode源码文件 vscode源码文件
好的,针对你的问题,你可以按照以下步骤更换 VS Code 的国内源:
1. 打开 VS Code,按下 `Ctrl + Shift + P`,在弹出的命令面板中输入 `settings.json` 并选择打开。
2. 在打开的 `settings.json` 文件中添加以下代码:
```
"http.proxy": "http://127.0.0.1:1080",
"http.proxyStrictSSL": false,
"https.proxy": "http://127.0.0.1:1080",
"https.proxyStrictSSL": false,
"extensions.autoUpdate": false,
"extensions.autoCheckUpdates": false,
"workbench.startupEditor": "newUntitledFile",
"update.mode": "none",
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"search.useIgnoreFiles": false,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
},
"editor.tabSize": 4,
"editor.detectIndentation": false,
"editor.insertSpaces": true,
"editor.wordWrap": "on",
"editor.renderWhitespace": "all",
"editor.minimap.enabled": false
```
3. 保存文件并重启 VS Code,此时 VS Code 就会使用国内源了。
阅读全文