Skip to content

Instantly share code, notes, and snippets.

@iloveitaly
Last active October 30, 2024 17:36
Show Gist options
  • Save iloveitaly/b0748e2f9f6831f9b8781ed8790e3404 to your computer and use it in GitHub Desktop.
Save iloveitaly/b0748e2f9f6831f9b8781ed8790e3404 to your computer and use it in GitHub Desktop.
# make sure you execute this *after* asdf or other version managers are loaded
cache_file="${0:A:h}/alias_cache.zsh"
if (( $+commands[gh] )); then
if [[ ! -f "$cache_file" || ! $(/usr/bin/find "$cache_file" -mtime -15 2>/dev/null) ]]; then
gh copilot alias -- zsh > "$cache_file"
gh completion --shell zsh >> "$cache_file"
fi
source "$cache_file"
compdef _gh gh
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment