Skip to content

Instantly share code, notes, and snippets.

@iloveitaly
Last active October 30, 2024 12:32
Show Gist options
  • Save iloveitaly/6a9df13db3884b77c58a26807a3d2500 to your computer and use it in GitHub Desktop.
Save iloveitaly/6a9df13db3884b77c58a26807a3d2500 to your computer and use it in GitHub Desktop.
# make sure you execute this *after* asdf or other version managers are loaded
plugin_dir="${0:A:h}"
cache_file="$plugin_dir/_pnpm"
if (( $+commands[pnpm] )); then
if [[ ! -f "$cache_file" || ! $(/usr/bin/find "$cache_file" -mtime -15 2>/dev/null) ]]; then
pnpm 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