From 0e43473d745f8e2c81eefca92f8cd3dca6d00938 Mon Sep 17 00:00:00 2001 From: chrischristiansen-glitch Date: Fri, 22 May 2026 02:21:05 +0200 Subject: [PATCH] feat: add .vscode/settings.json with PS7 OSVauco auto-startup profile [Phase 4] --- .vscode/extensions.json | 5 +++++ .vscode/settings.json | 16 ++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 .vscode/extensions.json create mode 100644 .vscode/settings.json diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..113d539 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,5 @@ +{ + "recommendations": [ + "ms-vscode.powershell" + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6cd0251 --- /dev/null +++ b/.vscode/settings.json @@ -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" +}