7 lines
156 B
Bash
Executable file
7 lines
156 B
Bash
Executable file
#!/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
|