Last active
March 9, 2021 09:45
-
-
Save onelharrison/8c73a013ec3a949c6dc0e2e634cc6069 to your computer and use it in GitHub Desktop.
MS 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-PSRepository -Name "PSGallery" -InstallationPolicy Trusted | |
if (-not (Get-InstalledModule -Name posh-git)) | |
{ | |
Install-Module posh-git -Scope CurrentUser | |
} | |
if (-not (Get-InstalledModule -Name oh-my-posh)) | |
{ | |
Install-Module oh-my-posh -Scope CurrentUser | |
} | |
Set-Theme Paradox | |
Update-Module |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment