A brief description on how to install my custom powershell terminal.
Clone this repository to start with the installation.
Maybe there will be some problems with the executions policies, to solve it run:
Set-ExecutionPolicy UnrestrictedIt is required to have a nerd font to use all the icons. Here, I am using Caskaydia Font. To install it, open the files and click install as shown in the image:
Then, on windows terminal, update your Powershell profile to use this font:
This module displays directory listing color and icons.
Install-Module -Name Terminal-Icons -Repository PSGalleryWe will need PSReadLine for autocompletion and predictive IntelliSense. Install it with:
Install-Module PSReadLine -ForceFirst, install fzf with chocolatey or scoop:
choco install fzfAnd then, install PSFzf:
Install-Module PSFzfchoco install gawkWe need oh-my-posh.
winget install JanDeDobbeleer.OhMyPoshThen, run the install.ps1 script to create the profile and add the oh-my-posh prompt and add the alias. Reload the terminal to reload $PATH and apply changes.

