This file contains hidden or 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
| { | |
| "$help": "https://aka.ms/terminal-documentation", | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "actions": | |
| [ | |
| { | |
| "command": | |
| { | |
| "action": "copy", | |
| "singleLine": false |
This file contains hidden or 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
| { | |
| "$help": "https://aka.ms/terminal-documentation", | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "actions": | |
| [ | |
| { | |
| "command": | |
| { | |
| "action": "copy", | |
| "singleLine": false |
This file contains hidden or 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
| # ===================================================================== | |
| # New-laptop dev environment setup (Windows 11 / PowerShell) | |
| # Installs core apps via winget (official source only). | |
| # WinGet bootstrap intentionally omitted - App Installer ships with Win11. | |
| # Usage: pwsh -File .\setup-apps.ps1 | |
| # ===================================================================== | |
| Write-Host "-=Installing Apps=-" -ForegroundColor Black -BackgroundColor White | |
| $apps = @( | |
| @{id = "Microsoft.WindowsTerminal"; source = "winget" } | |
| @{id = "Starship.Starship"; source = "winget" } # prompt engine (replaces Oh My Posh) |