Last active
October 30, 2024 12:32
-
-
Save iloveitaly/6a9df13db3884b77c58a26807a3d2500 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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