dotfiles

My configuration files
git clone git://git.finwo.net/misc/dotfiles
Log | Files | Refs

commit 9d7d6e49b2e60284a28b52271d7c1aadb20ebcc4
parent 77c660052c083ebd651903524493ccecf342a505
Author: finwo <finwo@pm.me>
Date:   Mon,  7 Oct 2019 17:04:21 +0200

Added go support in zshrc

Diffstat:
Mzsh/home/.zshrc | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/zsh/home/.zshrc b/zsh/home/.zshrc @@ -125,3 +125,8 @@ if [ -f "${HOME}/google-cloud-sdk/path.zsh.inc" ]; then . "${HOME}/google-cloud- # The next line enables shell command completion for gcloud. if [ -f "${HOME}/google-cloud-sdk/completion.zsh.inc" ]; then . "${HOME}/google-cloud-sdk/completion.zsh.inc"; fi # }}} +# Go binaries {{{ +if [ -d "${HOME}/go/bin" ]; then + export PATH="${HOME}/go/bin:${PATH}" +fi +# }}}