Skip to content

Instantly share code, notes, and snippets.

View bluntspoon's full-sized avatar
🎯
Focusing

Andrew Bevan bluntspoon

🎯
Focusing
View GitHub Profile
@bluntspoon
bluntspoon / settings.json
Last active March 12, 2024 19:12
Terminal_Settings_2024
{
"$help": "https://aka.ms/terminal-documentation",
"$schema": "https://aka.ms/terminal-profiles-schema",
"actions":
[
{
"command":
{
"action": "copy",
"singleLine": false
@bluntspoon
bluntspoon / terminal_settings.json
Last active March 12, 2024 19:28
DevMachineSetup_WinGet_2024
{
"$help": "https://aka.ms/terminal-documentation",
"$schema": "https://aka.ms/terminal-profiles-schema",
"actions":
[
{
"command":
{
"action": "copy",
"singleLine": false
@bluntspoon
bluntspoon / DevMachineSetup_WinGet.ps1
Last active July 16, 2026 20:02
Basic Dev Machine Setup using WinGet
# =====================================================================
# 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)