Created
September 22, 2024 13:08
-
-
Save iloveitaly/e0e099c243ddf7020c6e84d671703353 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[mise] )); then | |
if [[ ! -f "$cache_file" || ! $(find "$cache_file" -mtime -15 2>/dev/null) ]]; then | |
mise completion zsh > "$cache_file" | |
fi | |
source "$cache_file" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment