# Customizing PowerShell to Work Better With Git 1. Install `posh-git` and `oh-my-posh` ```powershell Install-Module posh-git -Scope CurrentUser Install-Module oh-my-posh -Scope CurrentUser ``` 1. Edit the $PROFILE, say `subl $PROFILE` and add the following lines: ```powershell Import-Module posh-git Import-Module oh-my-posh Set-Theme Paradox ``` If PowerShell complains about execution policy run `Set-ExecutionPolicy -Scope LocalMachine -ExecutionPolicy Unrestricted` ## A Better Font [microsoft/cascadia-code](https://github.com/microsoft/cascadia-code/releases?WT.mc_id=-blog-scottha) In Windows Terminal Config enter `"fontFace": "Cascadia Code PL"` Also checkout [How to make a pretty prompt in Windows Terminal with Powerline, Nerd Fonts, Cascadia Code, WSL, and oh-my-posh](https://www.hanselman.com/blog/HowToMakeAPrettyPromptInWindowsTerminalWithPowerlineNerdFontsCascadiaCodeWSLAndOhmyposh.aspx).