What IDE/Editor do you use for Elixir?

What IDE or editor are you using for Elixir development?

Personally, I use Zed, and I really like it, but sometimes I wish there were a more dedicated IDE/editor specifically for Elixir.

Something built around Elixir, OTP, Phoenix, LiveView, Mix, IEx, etc.

Do you think there is a need for something like this?

And if someone started an open-source Elixir-first editor, would you be interested in helping build it?

Also, what features do you feel are missing from your current editor?

Neovim. The LazyVim “distro” with my own preferences on top (not many, the thing is great out of the box).

Amazingly fast and bug-free. Rarely have I seen such a good work done with editor plugins collection (distro). Very happy with it.

3 Likes

Hi,

there exists Which code editor or IDE do you use? (Poll) (2022 Edition), and I thought there would be '23, '24, and so on editions as well, though my search-fu isn’t strong today…

To add to the actual topic:

I do use neovim, with a handcrafted config, not any distribution.

The config is public at https://github.com/nobbz/nobbz-vim, in case you are interested.

In case you are a nix user and have flakes enabled, you can even testrun it using nix run github:nobbz/nobbz-vim.

3 Likes

IntelliJ IDEA

1 Like

For me it’s just missing automatic file reload.
I don’t feel the need for any plugins because it hat LSP/Treesitter/Fuzzy Search builtin but there is an open PR for an embedded Scheme plugin language which is eagerly awaited

NeoVim/LunarVim

Last 15 years people tend to resolve different languages in editors via LSP (and MCP nowadays.) The last language-specific IDE I can recall was MS Visual Studio.

That being said, I honestly see zero sense in creating new editor, that effort might be better put into improving your LSP/MCP, which I already did with ragex for my own happiness.

Neovim with my own lua files. Simple and fast! GitHub - ccarvalho-eng/nvim-elixir-config: Opinionated Neovim config for Elixir · GitHub

I used LazyVim, but after a while it began to feel slow and bloated with features I never used. I also had to add my own Elixir test plugin because the built-in one didn’t pause the output for debugging, at least the last time I used it. A minimal configuration also makes me more comfortable since I can customize it exactly to my liking without reading Lazyvim documentation.

Interesting – I never once used debugging so I am blind to those defects.

To me it’s still super fast and I use it on an aging Intel Mac, a Ryzen laptop, and a WSL VM inside a mid-range gaming machine – it’s practically instant for anything I need from it on all places.

Bloat I am not too worried about. As long as the editor is snappy, which it is.

1 Like

I see. The thing is that you dont need much with Neovim. I even had a one file config with all I needed for work so at some point plugins become mostly cosmetic stuff for better visual/UX

1 Like

What IDE or editor are you using for Elixir development?

Neovim - great editor, strong community, steady improvement. Claude is good at editing Neovim config files and lua scripts.

Also, what features do you feel are missing from your current editor?

IMO, biggest bang for the buck would be contributions to Expert (code actions eg rename module, extract variable, etc.)

1 Like

The same as for any other stack, Emacs :wink: With treesitter and eglot I have pretty much all I feel I’d need.

1 Like

I’m using Zed.

Agree

2 Likes

Sublime and Helix.

dedicated IDE/Editor is a bad idea, it will always lag behind
you always want a good plugin in a popular IDE/Editor (VS Code, Neo/Vim, Emacs, Sublime, Jetbrains, etc …)

Personally, I only look for plugins in Either VS Code and Emacs, and 99.9% of the time, there is a very good one in VS Code (I still consider Emacs because of personal preference, but the reality is its lagin)

Dont waste too much time picking and thinking about editor, just use VS Code, and from the other reply, it seem the NeoVim plugin is very good too, so check that if you like VIM

2 Likes

I use Vim9 with my own plugin for text objects, navigation, and some other stuff. It’s not very popular, lol.

Almost all programmers work in multiple languages, concurrently and/or serially over a career. Tools (like editors) that you can learn once and keep using seem like the best investment of time.

Neovim + lazy.nvim plugin manager. Highly configurable but can be minimalistic. Fast and clutter free UI/UX.

I tend to use terminal environment more. Neovim needs less screen real estate and works nice even when my MacBook is not connected to big screen monitor.

1 Like

I’m using Zed now.

2 Likes

I use Zed for working with multiple programming languages. But recently, I’ve been using OpenCode (AI agent) more often to review code.