Hello! My question is basically what the title says. I’m searching for an IDE/text editor for Go development and am wondering if anybody knows an alternative to these. Here is the list of software I tried:
-
I’ve tried NeoVim but I really don’t want to waste time doing text-based configuration and messing with extensions just to get some basic features working.
-
I tried VSCodium but it doesn’t exist in my system software repositories (I’m currently on Chimera Linux), and the flatpak version can’t run any system commands.
-
GoLand and Sublime Text are proprietary & paid.
It seems the market for IDEs is pretty small, so I wouldn’t really be surprised if nothing existed that fit these criteria, but thanks for any answers in advance!
Edit: I’ve settled with Lite-XL which seems to be a great editor. Thanks for all of your great recommendations!
You could consider something like LazyVim installed on top of Nvim so you don’t have to configure it from scratch.
+1, I would recommend neovim with lazyvim. The documentation is excellent, and it’s very easy to set up.
Zed now has Linux support.
And then helix editor works with Go LSP, this is my current daily driver. Even without plugins, helix works better and manageable than vim/emacs. Only thing that doesn’t work is debugger.
Sure. https://gist.github.com/linusr/18cd6f8b0b059073460f0f3c322b8939
Includes both config & languages config.
Pulsar is a fork of Atom under active development. We don’t publish a flatpak (yet) but there is a community maintained flatpak for it.
Otherwise if you want to look at something else I’d give Lite XL, Lapce or even Zed (it has now been open sourced and looks like it has a flatpak available) a look as interesting alternatives.
I found emacs to be perfectly fine. Didn’t need an IDE. Go compiler then was astoundingly fast–instant builds, basically. I think newer Go compilers are slower but generate better code. It would be nice to have a compile time flag to turn the slow optimizations on and off, like C compilers have.
Didn’t need an IDE.
That’s actually considered an IDE.
And, these days, runs leaner than vi for single-file editing from a dead start. It’s weird but it’s true by like 1%.
Distrobox will resolve your issue with VSCode and then some. Run archlinux, debian or whatever you want as a container. Then, install VSCode/VSCodium (and any other apps that Chimera lacks) inside the container OS. This will keep your development environment containerized and safely away from your host OS.