mirror of
https://github.com/vczh-libraries/Release.git
synced 2026-03-23 15:52:56 +08:00
47 lines
1.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
// global settings in `%appdata%\Code\User\settings.json`
|
|
// editor
|
|
"editor.insertSpaces": true,
|
|
"editor.tabSize": 4,
|
|
"editor.detectIndentation": true,
|
|
"[cpp][h]": {
|
|
"editor.insertSpaces": false,
|
|
"editor.tabSize": 4
|
|
},
|
|
"[md]": {
|
|
"editor.insertSpaces": true,
|
|
"editor.tabSize": 2
|
|
},
|
|
// search
|
|
"search.exclude": {
|
|
"Release/**": true
|
|
},
|
|
"search.useIgnoreFiles": false,
|
|
"search.useGlobalIgnoreFiles": false,
|
|
// UI
|
|
"git.openRepositoryInParentFolders": "always",
|
|
"terminal.integrated.defaultProfile.windows": "PowerShell",
|
|
"workbench.secondarySideBar.defaultVisibility": "visible",
|
|
// copilot
|
|
"github.copilot.nextEditSuggestions.enabled": true,
|
|
"github.copilot.chat.agent.thinkingTool": true,
|
|
"chat.agent.maxRequests": 9999,
|
|
"task.allowAutomaticTasks": "on",
|
|
"chat.tools.terminal.autoApprove": {
|
|
"/^\\$\\w+\\s*=/": true,
|
|
"/.*/": true,
|
|
"/git.*push/": false,
|
|
"kill": false,
|
|
"curl": false,
|
|
"wget": false,
|
|
"eval": false,
|
|
"chmod": false,
|
|
"chown": false,
|
|
"Stop-Process": false,
|
|
"Invoke-WebRequest": false,
|
|
"Invoke-Expression": false,
|
|
"Get-Acl": false,
|
|
"Set-Acl": false
|
|
},
|
|
"chatgpt.openOnStartup": true
|
|
} |