blob: 86086eec1603b1c4d95edfbd426307bd547d5c38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# zshenv/99_fzf
#
# Set up fzf (https://github.com/junegunn/fzf)
#
# Copyright © 2022 Tobias Klauser <tklauser@distanz.ch>
#
# 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"
|