7 lines
99 B
Bash
7 lines
99 B
Bash
|
#!/usr/bin/env zsh
|
||
|
|
||
|
# Setup fzf completions
|
||
|
if type fzf > /dev/null; then
|
||
|
eval "$(fzf --zsh)"
|
||
|
fi
|