This repository has been archived on 2022-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/home/.config/nvim/scripts/lsp/gopls

8 lines
289 B
Bash
Executable File

#!/bin/sh
server_path="${XDG_DATA_HOME:-$HOME/.local/share}/nvim/lsp/gopls"
[ ! -d "${server_path}" ] && mkdir -p "${server_path}"
GOPATH="${server_path}" GOBIN="${server_path}" go install golang.org/x/tools/gopls@latest
GOPATH="${server_path}" GOBIN="${server_path}" go clean -modcache