feat: add update script for fzf shell files

This commit is contained in:
Daylin Morgan 2023-01-19 11:36:00 -06:00
parent a8d43af719
commit ebbddb6eaf

7
lib/.fzf/update.sh Executable file
View file

@ -0,0 +1,7 @@
#!/usr/bin/env bash
URL=https://raw.githubusercontent.com/junegunn/fzf/master/shell
for f in completion.zsh key-bindings.zsh; do
wget -O $f $URL/$f
done