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