this post was submitted on 06 May 2026
324 points (98.2% liked)

Technology

84410 readers
3086 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] placebo@piefed.zip 15 points 21 hours ago (1 children)

On the flip side, it pushed me to move away from vscode. Whoever did this, thanks.

[–] prettybunnys@piefed.social 4 points 17 hours ago (2 children)

Genuinely curious, to what?

The plugin ecosystem of vscode is why I’m still here.

[–] placebo@piefed.zip 2 points 4 hours ago* (last edited 4 hours ago)

Neovim. It's painful at the beginning, but I'm getting more confident and productive. IMO, it's worth it if you're into CLI.

I also considered JetBrains products and Zed.

Speed and battery consumption are important to me, and JetBrains is too monstrous to satisfy these criteria. Besides, JetBrains doesn't really offer a basic code editor that you can extend with plugins. IntelliJ IDEA is meant to be like that, but it's a huge Java IDE whether you need it or not.

Zed looked good, but I decided not to invest my time into another code editor with paid features - they tend to enshittify over time.

[–] sloppy_diffuser@sh.itjust.works 14 points 16 hours ago* (last edited 16 hours ago) (1 children)

Neovim. Also there for the plugin ecosystem. Some popular feature rich presets, all customizable.

https://www.lazyvim.org/ https://astronvim.com/ https://nvchad.com/

Quick search suggests Emacs is the only other major rival to VSCode/Neovim so you're stuck with a TUI or a VSCode fork for a rich plugin ecosystem (non-athoritive statement, 30s web search).

[–] addie@feddit.uk 1 points 10 hours ago* (last edited 9 hours ago) (1 children)

Plain old Vim, with YouCompleteMe, NERDTree and TagBar installed; plus a few bindings to the leader key, is a much better IDE than anything else I've found. Sometimes it would be nice to a couple of the buttons that Eclipse or IDEA provide, but for pure text editing it's unbeatable.

I've also found that "fancy Git dialogs" just get in the way, and learning how to use it properly from the command line stomps them all hands down. Plus, you can still use all your skills in a remote terminal.

[–] sloppy_diffuser@sh.itjust.works 1 points 9 hours ago* (last edited 9 hours ago)

I couldn't go without LSPs these days.

Real time diagnostics. Jump to implementation. Code actions.

Its just so much faster and my code rarely doesn't run on first try outside of logic errors, but it still runs.

https://github.com/neoclide/coc.nvim was nice back in the day, but neovim and the plugin ecosystem takes it to another level.

Edit: I agree with you on git when learning. I'm old, over 15 years of experience on it. I don't have anything to gain typing the same handful of commands I use everyday.