-
Visual Studio Code
https://code.visualstudio.com/Download -
Cascadia Code
https://github.com/microsoft/cascadia-code
Install Windows Terminal, run as administrator & edit settings:
{
"initialCols": 180,
"initialRows": 42,
"confirmCloseAllTabs": false,
"profiles":
{
"defaults":
{
"fontFace": "Cascadia Mono PL",
},
"list":
[
{
"name": "Windows PowerShell",
"commandline": "powershell.exe /nologo"
Change execution policy, & install PowerShellGet:
> Set-ExecutionPolicy RemoteSigned
> Install-Module -Name PowerShellGet -Force
Restart Windows Terminal & install PSReadLine, oh-my-posh & posh-git:
> Install-Module PSReadLine -AllowPrerelease -Force
> Install-Module oh-my-posh -Scope CurrentUser
> Install-Module posh-git -Scope CurrentUser
Create Profile
> code $profil
Import-Module posh-git
Import-Module oh-my-posh
Set-Theme Paradox
Import-Module PSReadLine
Set-PSReadLineKeyHandler -Key Tab -Function MenuComplete
Set-PSReadLineOption -HistorySearchCursorMovesToEnd
Set-PSReadLineKeyHandler -Key UpArrow -Function HistorySearchBackward
Set-PSReadLineKeyHandler -Key DownArrow -Function HistorySearchForward
Set-PSReadLineOption -ShowToolTips
Set-PSReadLineOption -PredictionSource History
Restart Windows Terminal & enjoy :)