feat: add .vscode/settings.json with PS7 OSVauco auto-startup profile [Phase 4]

This commit is contained in:
chrischristiansen-glitch 2026-05-22 02:21:05 +02:00
parent 7088ccce2d
commit 0e43473d74
2 changed files with 21 additions and 0 deletions

5
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"recommendations": [
"ms-vscode.powershell"
]
}

16
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,16 @@
{
"workbench.colorTheme": "Monokai Dimmed",
"files.autoSave": "afterDelay",
"terminal.integrated.enableMultiLinePasteWarning": "never",
"terminal.integrated.profiles.windows": {
"OSVauco": {
"path": "C:\\Program Files\\PowerShell\\7\\pwsh.exe",
"args": [
"-NoExit",
"-File",
"G:\\Shared drives\\OS-VAUCO-DRIVE\\OSVauco\\scripts\\osv-startup.ps1"
]
}
},
"terminal.integrated.defaultProfile.windows": "OSVauco"
}