Last active
October 12, 2024 21:48
-
-
Save bradygaster/64de8cdaf7ee286f55945dc82a0bc1f2 to your computer and use it in GitHub Desktop.
bradyg's powershell profile
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
set-alias k kubectl | |
oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH/bradyg.2024.json" | Invoke-Expression | |
Import-Module -Name Terminal-Icons | |
cd c:\src | |
cls | |
Import-Module PSReadLine | |
Set-PSReadLineOption -PredictionSource History | |
Set-PSReadLineOption -PredictionViewStyle ListView | |
Set-PSReadLineOption -EditMode Windows | |
function update-dotnet-scaffold { | |
dotnet tool uninstall microsoft.dotnet-scaffold-aspire --global | |
dotnet tool uninstall microsoft.dotnet-scaffold-aspnet --global | |
dotnet tool uninstall microsoft.dotnet-scaffold --global | |
dotnet tool install microsoft.dotnet-scaffold --global --add-source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet9/nuget/v3/index.json --prerelease --interactive | |
dotnet tool install microsoft.dotnet-scaffold-aspire --global --add-source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet9/nuget/v3/index.json --prerelease --interactive | |
dotnet tool install microsoft.dotnet-scaffold-aspnet --global --add-source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet9/nuget/v3/index.json --prerelease --interactive | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment