Cheatography
https://cheatography.com
Shows how to install, configure and use fzf as part of zsh.
This is a draft cheat sheet. It is a work in progress and is not finished yet.
Installation
Do install zsh in your Linux distribution, and on top of it, install oh-my-zsh. See Installing ZSH how to do that. |
|
Last ensure that fzf
is installed on your system. See fzf installation on how to do that. |
Configuration
Then you have to configure oh-my-zsh
so that fzf
is configured as well.
Find in the configuration file the lines that enables the plugins
plugins=(...)
Add to that list fzf
|
Additional Resources
Using FZF to Preview Text Files on the Command Line and within Vim |
|
|
|
fzf explicit usage
You may call fzf without any argument directly from the command line, which then results in scanning the current directory and sub-directories for files. By entering then search terms (with multiple ones separated by SPACE), the list of matches gets more concrete |
|
|
|