From 95dc37230a19b9031249a0271973fd6f26f41a38 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Tue, 10 May 2022 11:55:52 +0200 Subject: zshrc: add 99_fzf Integration for fzf, adapted from .fzf.zsh auto-generated by fzf's install script. --- .zsh/zshrc/99_fzf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .zsh/zshrc/99_fzf diff --git a/.zsh/zshrc/99_fzf b/.zsh/zshrc/99_fzf new file mode 100644 index 0000000..86086ee --- /dev/null +++ b/.zsh/zshrc/99_fzf @@ -0,0 +1,15 @@ +# zshenv/99_fzf +# +# Set up fzf (https://github.com/junegunn/fzf) +# +# Copyright © 2022 Tobias Klauser +# +# Source repository: git://git.distanz.ch/dotfiles/zsh.git + +path_append $HOME/.fzf/bin + +# Auto-completion +[[ $- == *i* ]] && source "${HOME}/.fzf/shell/completion.zsh" 2> /dev/null + +# Key bindings +source "${HOME}/.fzf/shell/key-bindings.zsh" -- cgit v1.2.3-54-g00ecf