Skip to content

Instantly share code, notes, and snippets.

@onelharrison
Last active March 9, 2021 09:45
Show Gist options
  • Save onelharrison/8c73a013ec3a949c6dc0e2e634cc6069 to your computer and use it in GitHub Desktop.
Save onelharrison/8c73a013ec3a949c6dc0e2e634cc6069 to your computer and use it in GitHub Desktop.
MS PowerShell Profile
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