dotfiles/zsh/funcs/gopls
zendesk-acicchetti ba4a044ba7 fix gopls
2022-05-04 10:54:10 -04:00

7 lines
190 B
Text

if [[ $(whence -p go 2> /dev/null) ]]; then
if [[ ! $(whence -p gopls 2> /dev/null) ]]; then
pushd /tmp
go install golang.org/x/tools/gopls@latest
popd
fi
fi