Get the godoc template
mkdir ~/.godoc_templates
cp $GOROOT/lib/godoc/* ~/.godoc_templates
cd ~/.godoc_templates
rm package.txt
wget https://gist.github.com/icholy/5320428/raw/34d716d9bc3badddd2f3164c4d2850b8f2c4f418/package.txt
Add the completion
mkdir ~/.zsh/completions
cd ~/.zsh/completions/
wget https://gist.github.com/icholy/5320428/raw/1775b8c3b85b4a0ef95858afbf2e728c42b4ded0/_godoc
Add the following to your .zshrc
# COMPLETION SETTINGS
fpath=(~/.zsh/completions $fpath)
autoload -U compinit
compinit