Skip to content

Instantly share code, notes, and snippets.

@iloveitaly
Last active October 4, 2024 21:13
Show Gist options
  • Save iloveitaly/b3c9fb69717d0d3f209cf682b3fa34b1 to your computer and use it in GitHub Desktop.
Save iloveitaly/b3c9fb69717d0d3f209cf682b3fa34b1 to your computer and use it in GitHub Desktop.
plugin_dir="${0:A:h}"
cache_file="$plugin_dir/_ov"
if (( $+commands[ov] )); then
if [[ ! -f "$cache_file" || ! $(/usr/bin/find "$cache_file" -mtime -15 2>/dev/null) ]]; then
ov --completion zsh > "$cache_file"
fi
fpath+=$plugin_dir
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment