Last active
October 30, 2024 17:36
-
-
Save iloveitaly/b0748e2f9f6831f9b8781ed8790e3404 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
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