skim for Debian ============================ skim provides keybindings to integrate itself with your preferred shell. ===================== Shell Integration ===================== Add the following line to your shell configuration file. * bash (config file at ~/.bashrc) # Set up fzf key bindings and fuzzy completion eval "$(fzf --bash)" * zsh (config file at ~/.zshrc) # Set up fzf key bindings and fuzzy completion source <(fzf --zsh) * fish (config file at ~/.config/fish/config.fish) # Set up fzf key bindings fzf --fish | source The `--bash`, `--zsh`, `--fish` options are available after fzf 0.48.0. More information can be found in the upstream README file: /usr/share/doc/fzf/README.md.gz -- Matthias Geiger