mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
20 lines
392 B
Bash
Executable File
20 lines
392 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Install fzf
|
|
#
|
|
# shellcheck source=shared.sh
|
|
eval "$HOME/.dotfiles/scripts/shared.sh"
|
|
|
|
FZF_GIT="https://github.com/junegunn/fzf.git"
|
|
FZF_PATH="${XDG_CONFIG_HOME}/fzf"
|
|
FZF_BUILD="/tmp/fzf"
|
|
|
|
if [ ! -d "$FZF_BUILD" ]; then
|
|
git clone --depth 1 "$FZF_GIT" "$FZF_BUILD"
|
|
"$FZF_BUILD/install" \
|
|
--xdg \
|
|
--bin
|
|
else
|
|
msg_done "fzf ($FZF_PATH/) already installed"
|
|
fi
|