]> src.twobees.de Git - dotfiles.git/blobdiff - stow/oh-my-zsh/.oh-my-zsh/plugins/fzf/README.md
rm oh-my-zsh
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / fzf / README.md
diff --git a/stow/oh-my-zsh/.oh-my-zsh/plugins/fzf/README.md b/stow/oh-my-zsh/.oh-my-zsh/plugins/fzf/README.md
deleted file mode 100644 (file)
index beedf46..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-# fzf
-
-This plugin tries to find [junegunn's fzf](https://github.com/junegunn/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:
-
-```zsh
-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:
-
-```zsh
-export FZF_BASE=/path/to/fzf/install/dir
-```
-
-### `FZF_DEFAULT_COMMAND`
-
-Set default command to use when input is tty:
-
-```zsh
-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:
-
-- [`fd`](https://github.com/sharkdp/fd)
-- [`rg`](https://github.com/BurntSushi/ripgrep)
-- [`ag`](https://github.com/ggreer/the_silver_searcher)
-
-### `DISABLE_FZF_AUTO_COMPLETION`
-
-Set whether to load fzf auto-completion:
-
-```zsh
-DISABLE_FZF_AUTO_COMPLETION="true"
-```
-
-### `DISABLE_FZF_KEY_BINDINGS`
-
-Set whether to disable key bindings (CTRL-T, CTRL-R, ALT-C):
-
-```zsh
-DISABLE_FZF_KEY_BINDINGS="true"
-```