mirror of
https://github.com/dnlbauer/dotfiles.git
synced 2026-09-10 21:45:30 +00:00
11 lines
269 B
Bash
11 lines
269 B
Bash
#!/usr/bin/env sh
|
|
|
|
if [ ! -d "$HOME/.fzf" ]; then
|
|
echo "Installing fzf into ~/.fzf"
|
|
git clone --depth 1 https://github.com/junegunn/fzf.git $HOME/.fzf
|
|
if [ ! -f "$HOME/.fzf/bin" ]; then
|
|
$HOME/.fzf/install --completion --key-bindings --update-rc
|
|
fi
|
|
fi
|
|
|