Docs

powershell

PowerShell

Installation

powershell
Install-Module posh-git -Scope CurrentUser
powershell
Install-Module git-aliases -Scope CurrentUser -AllowClobber
powershell
Install-Module z -AllowClobber
powershell
winget install --id Starship.Starship
powershell
winget install gerardog.gsudo

Usage

powershell
Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete
powershell
Import-Module posh-gitImport-Module git-aliases -DisableNameCheckingImport-Module z
powershell
Invoke-Expression (&starship init powershell)
powershell
Set-Alias -Name la -Value Get-ChildItem
powershell
function i {    param (        [string]$DirectoryName    )
    Set-Location -Path "$HOME\i\$DirectoryName"}

powershell-profile