DEV Community

Cover image for PowerShell like Linux
araguaci
araguaci

Posted on

PowerShell like Linux

Install posh-git

Install-Module posh-git -Scope CurrentUser -Force
Enter fullscreen mode Exit fullscreen mode

Install oh-my-posh

Install-Module oh-my-posh -Scope CurrentUser -Force
Enter fullscreen mode Exit fullscreen mode

Open Profile PowerShell

code $PROFILE
Enter fullscreen mode Exit fullscreen mode

Save PowerShell Profile with this

Import-Module posh-git
Import-Module oh-my-posh
Set-PoshPrompt -Theme slimfat
Enter fullscreen mode Exit fullscreen mode

Top comments (0)