Lernkurve
Lernkurve

Reputation: 21532

How do I set up fzf fuzzy finder to use ripgrep in Powershell?

Goal

I want to be able to invoke fzf in Powershell with Ctrl+T and it should use ripgrep so it's faster.

Context

What I've found so far

Some blogs suggest to put this line in PowerShell_profile.ps1:

$env:FZF_DEFAULT_COMMAND = 'rg --files --hidden --follow --glob "!.git/*"'

But I didn't notice any improvements even after restarting the Windows Terminal.

Upvotes: 0

Views: 683

Answers (0)

Related Questions