Install Go, create a workspace, and configure GoLand to use the gopls language server for full IDE support.
- Install the Go toolchain and verify the version with
go version. - Initialize a workspace in your project root with
go work init. - Open your project folder in GoLand and let it detect the
go.modfile automatically. - Ensure GoLand is using
goplsby checking Settings > Languages & Frameworks > Go > Gopls and enabling it. - Verify the setup by checking the
goplsversion in the GoLand terminal withgopls -v version.