DEV Community

Alex Mammay
Alex Mammay

Posted on • Edited on

5 3

VS Code setup for golang in 2020

My IDE setup usually change quite a bit overtime, so i figured it would be quite nice to document my current setup as a snapshot in time around the current development ecosystem that i am currently in.

My day to day tech stack usually revolves golang, and containers. I guess you could call that stack the 2020 serverless stack at this point really... Between using intellij ultimate and vscode i generally have a pretty consistent setup between either one.

Theme

  • Color Theme: One Dark Pro
  • Icon Theme: Material Icon Theme
  • Font: Jetbrains Mono, Font Ligatures enabled
  "workbench.colorTheme": "One Dark Pro",
  "editor.fontFamily": "'JetBrains Mono', Consolas, 'Courier New', monospace",
  "editor.fontSize": 13,
  "editor.fontLigatures": true,
  "editor.letterSpacing": 0.4,
  "editor.smoothScrolling": true,
  "workbench.iconTheme": "material-icon-theme",
Enter fullscreen mode Exit fullscreen mode

Theme Setup

Settings for go

  "go.lintOnSave": "file",
  "[go]": {
    "editor.formatOnSave": true,
    "editor.codeActionsOnSave": {
      "source.organizeImports": true
    }
  },
  "go.docsTool": "gogetdoc",
  "go.formatTool": "goimports",
  "go.useLanguageServer": true,
Enter fullscreen mode Exit fullscreen mode

Extensions

  • Cloud Code (googlecloudtools.cloudcode) For all your serverless GCP needs (really nice way to run a cloud run like environment locally with it leveraging minikube)

cloud code example

  • Docker (ms-azuretools.vscode-docker)
  • GO (golang.go)
  • gotemplate-syntax (casualjim.gotemplate)
  • Golang postfix code completion (yokoe.vscode-postfix-go) This might be the most important extension to have installed. I find myself having more productive rhythm when using postfix tools across any language since i worry more about the core pieces of code and any thing else can be an afterthought.

demo

  • Intellij IDEA key mapping (k--kato.intellij-idea-keybindings)

Heroku

Build apps, not infrastructure.

Dealing with servers, hardware, and infrastructure can take up your valuable time. Discover the benefits of Heroku, the PaaS of choice for developers since 2007.

Visit Site

Top comments (0)

Heroku

This site is built on Heroku

Join the ranks of developers at Salesforce, Airbase, DEV, and more who deploy their mission critical applications on Heroku. Sign up today and launch your first app!

Get Started

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay