FOSS IDEs recommendations?
FOSS IDEs recommendations?
I'm getting back into coding and I'm going to start with python but I wanted to see what are some good IDEs to write the code. Thanks in advance.
You're viewing a single thread.
Zed
8 2 ReplyZed is full of AI rubbish, though, which is a shame as I was looking for a code editor built with Rust.
5 1 ReplyIt's not too hard to disable all of it
{ // Disable Telemetry "telemetry": { "metrics": false, "diagnostics": false }, // Disable Assistant: "assistant": { "enabled": false, "button": false, "version": "2" }, // Disable Copilot: "features": { "inline_completion_provider": "none" }, // Disable Collaboration Features: "collaboration_panel": { "button": false }, "chat_panel": { "button": false }, "notification_panel": { "button": false } }
2 0 ReplyThese should be off by default (made opt-in not opt-out) or made plugins/extensions at worst and removed completely at best.
1 0 Reply
You can check out Lapce, which is written in Rust: https://github.com/lapce/lapce
5 0 ReplyYeah, I have. Seems like development has stalled, though. Last release was 4 months ago and the last commit a month ago.
1 0 Reply
Rust doesn’t buy you anything interesting in this space.
3 0 ReplyNot really, all the AI stuff is off by default and doesn't really nag you all too much...
3 0 ReplyI did find this fork which removes all the AI and telemetry. You’d be surprised how much of it is there.
2 0 ReplyNot sure about the AI component but telemetry can be turned off with 1 line in the Zed config file afaik.
1 0 Reply
Mac and Linux only
1 0 ReplyAs long as it has an integration for your language/framework of choice it’s the best imo
1 0 ReplyWill try, thanks.
1 0 Reply