1. Download Windows Terminal

  2. poshgit

choco install poshgit
  1. Download Zoomit
zoom mode -> ctrl + 1
zoom in -> mouse scroll up
zoom out -> mouse scroll down
start drawing -> left click
stop drawing -> right click
start drawing not in zoom mode -> ctrl + 2

Shortcuts

  1. Download Powershell

  2. Set PowerShell as your default from settings

image

  1. Hide Windows PowerShell in setting.json file
"hidden": true
  1. Move PowerShell to the top in setting.json file

  2. In the terminal run

wsl --install
  1. Intall Ubuntu
wsl --install -d Ubuntu

or

Downlaod Ubuntu. To install search and click Ubuntu

  1. Show Ubuntu in setting.json file

  2. Download Caskaydia Cove Nerd Font and drop the into C:\Windows\Fonts

  3. Oh My Posh

choco install oh-my-posh
  1. Set the Caskaydia Cove Nerd Font
CaskaydiaCove NF
  1. You may have to create the folder PowerShell and the file Microsoft.PowerShell_profile.ps1
echo $PROFILE
echo 'test' > C:\Users\***\Documents\PowerShell\Microsoft.PowerShell_profile.ps1
  1. Open file Microsoft.PowerShell_profile.ps1 and add the following line. Read more here
oh-my-posh init pwsh | Invoke-Expression
  1. Set Terminal Transparency
ctrl + shift + scroll up/down
  1. Icons
Install-Module -Name Terminal-Icons -Repository PSGallery
code $PROFILE
Import-Module -Name Terminal-Icons

Resources

  1. How to make the ultimate Terminal Prompt on Windows 11