diff --git a/Bootstrap.ps1 b/Bootstrap.ps1 new file mode 100644 index 0000000..c6081b4 --- /dev/null +++ b/Bootstrap.ps1 @@ -0,0 +1,8 @@ +#!/usr/bin/env pwsh + +# Shell + +New-Item -Type Directory $home/Documents/PowerShell +Copy-Item ./Config/Microsoft.PowerShell_profile.ps1 $home/Documents/PowerShell +Copy-Item ./Config/starship.toml $home/.config +winget install starship diff --git a/Config/Microsoft.PowerShell_profile.ps1 b/Config/Microsoft.PowerShell_profile.ps1 new file mode 100644 index 0000000..9deeb1d --- /dev/null +++ b/Config/Microsoft.PowerShell_profile.ps1 @@ -0,0 +1 @@ +Invoke-Expression (&starship init powershell)