diff --git a/dots/.config/powershell/Microsoft.PowerShell_profile.ps1 b/dots/.config/powershell/Microsoft.PowerShell_profile.ps1 index d52928c9..a66364c1 100644 --- a/dots/.config/powershell/Microsoft.PowerShell_profile.ps1 +++ b/dots/.config/powershell/Microsoft.PowerShell_profile.ps1 @@ -1 +1,3 @@ -Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete +Install-Module -Name PSFzf -RequiredVersion 2.5.10 +Set-PsFzfOption -PSReadlineChordProvider 'Ctrl+t' -PSReadlineChordReverseHistory 'Ctrl+r' +Set-PSReadLineKeyHandler -Key Tab -ScriptBlock { Invoke-FzfTabCompletion }