0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/plugins/fzf
Carlo Sala f96a900ea3
feat(fzf)!: default to using fd before rg (#10757)
BREAKING CHANGE: if both `fd` and `rg` are installed, default to using `fd`. This
is the recommendation of the ripgrep author, and it's been found to be faster.
If you want to force using `rg`, set the `FZF_DEFAULT_COMMAND` variable.
2022-03-05 19:18:56 +01:00
..
fzf.plugin.zsh feat(fzf)!: default to using fd before rg (#10757) 2022-03-05 19:18:56 +01:00
README.md feat(fzf)!: default to using fd before rg (#10757) 2022-03-05 19:18:56 +01:00

fzf

This plugin tries to find junegunn's fzf based on where it's been installed, and enables its fuzzy auto-completion and key bindings.

To use it, add fzf to the plugins array in your zshrc file:

plugins=(... fzf)

Settings

All these settings should go in your zshrc file, before Oh My Zsh is sourced.

FZF_BASE

Set to fzf installation directory path:

export FZF_BASE=/path/to/fzf/install/dir

FZF_DEFAULT_COMMAND

Set default command to use when input is tty:

export FZF_DEFAULT_COMMAND='<your fzf default command>'

If not set, the plugin will try to set it to these, in the order in which they're found:

DISABLE_FZF_AUTO_COMPLETION

Set whether to load fzf auto-completion:

DISABLE_FZF_AUTO_COMPLETION="true"

DISABLE_FZF_KEY_BINDINGS

Set whether to disable key bindings (CTRL-T, CTRL-R, ALT-C):

DISABLE_FZF_KEY_BINDINGS="true"