Add goenv init zsh script

This commit is contained in:
Daniel Lynn 2025-04-30 08:54:11 -05:00
parent 3eaddcfb7c
commit 5dbd41d75b
Signed by: daniel
GPG Key ID: 28496A140E180A9D

4
zsh.d/goenv.zsh Normal file
View File

@ -0,0 +1,4 @@
# Enable goenv if it is installed
if (( $+commands[goenv] )); then
eval "$(goenv init -)"
fi