
XDA covered the KDE community’s LLM policy debate this week: a sub-community wants a hard ban on generative AI contributions to the KDE code base, and the guidelines are still being drafted. It is one visible flash point in a wider mood: a lot of developers now want an editor that does not embed a chat assistant, does not send buffers to a cloud model for autocomplete, and does not phone home with telemetry about the files they touch.
The mainstream editors have gone the other way. VS Code ships Copilot prompts in the welcome screen, JetBrains bundles its AI Assistant, and Cursor and Zed are AI-first by design. So we tested 7 code editors that either ship no AI at all or make every LLM feature strictly opt-in via a plugin the user installs themselves. Each pick below runs on Windows, macOS, and Linux, works offline, and does not add telemetry that leaves the machine by default.
What to look for in an AI-free code editor
- No bundled LLM chat panel, autocomplete, or “Ask AI” menu, even one that is off by default. Bundled means it can be re-enabled by a well-meaning update.
- Local extension model where any AI feature has to be installed as a plugin the developer chose, not enabled by a checkbox in first-run onboarding.
- Telemetry off by default, or ideally not present at all.
- Cross-platform so a team can standardize on one editor.
- Multi-cursor and multi-selection, which is the modern-editor baseline for productivity.
- A real LSP integration so language intelligence does not require the AI layer to be usable.
Quick comparison
| App | Best for | Free | License | Bundled AI |
|---|---|---|---|---|
| Sublime Text | Fast general-purpose editing | Evaluation, no time limit | Proprietary (paid) | No |
| Kate | KDE-native full-featured editor | Yes | Open source (LGPL) | No |
| Neovim | Terminal-first modal editing | Yes | Open source (Vim license) | No |
| Emacs | Deeply extensible editor and environment | Yes | Open source (GPL) | No |
| Geany | Lightweight IDE-lite for small projects | Yes | Open source (GPL) | No |
| Notepad++ | Windows-native fast editing | Yes | Open source (GPL) | No |
| Micro | Modern terminal editor with mouse support | Yes | Open source (MIT) | No |
The 7 best AI-free code editors for desktop
1. Sublime Text, best overall
Sublime Text is the fast, closed-source editor that Sublime HQ has kept deliberately narrow. There is no Copilot analog in the box, no chat sidebar, no telemetry beyond license activation. Multi-cursor, Goto Anything, and the command palette all remain the reference implementation the rest of the industry copied. Package Control gives you LSP, git gutter, and linting without pulling in an AI assistant.
Where it falls short: Sublime is not free. The license is a one-time purchase and includes updates for a fixed window, which is either fair or steep depending on your feelings on paid software.
Pricing:
- Free: Full evaluation with occasional purchase nag.
- Paid: One-time license, no subscription.
Platforms: Windows, macOS, Linux.
Download: Sublime Text
Bottom line: The default pick when you want a fast editor whose feature list is not going to grow an AI menu next release.
2. Kate, best free full-featured editor
Kate is KDE’s editor. Full multi-document interface, split view, LSP support, integrated terminal, session management, and a healthy plugin API. The KDE community is precisely the group publicly resisting a generative-AI push, so if you want to vote with your editor, Kate is the aligned choice.
Where it falls short: Feels most at home on KDE Plasma. Windows and macOS builds work but do not blend into the OS the way native editors do.
Pricing:
- Free: Everything.
- Paid: Free.
Platforms: Windows, macOS, Linux (native on KDE).
Download: Kate
Bottom line: The free full-featured option. Ships from the community drawing the line the article was about.
3. Neovim, best terminal editor
Neovim is the modern fork of Vim with a Lua config layer and a real LSP client. There is no AI in the base editor. Copilot, Codeium, and similar plug into Neovim via plugins the user installs, so an AI-free Neovim is the default state, not an opt-out.
Where it falls short: The Vim modal editing curve is real. Expect a week before you are as fast as in a mouse-first editor.
Pricing:
- Free: Everything.
- Paid: Free.
Platforms: Windows, macOS, Linux, plus every terminal you can SSH into.
Download: Neovim
Bottom line: Best pick if you already live in the terminal and want an editor with no cloud dependency of any kind.
4. Emacs, best for full customization
Emacs is less an editor and more a small operating system that happens to edit text. It ships no LLM features by default. The community extensions that add them are optional; the default install is a genuinely offline, AI-free environment. Magit, Org-mode, and LSP integration remain the reasons people still choose Emacs after four decades.
Where it falls short: The learning curve is a joke among developers for a reason. Configuration is Elisp.
Pricing:
- Free: Everything.
- Paid: Free.
Platforms: Windows, macOS, Linux.
Download: GNU Emacs
Bottom line: Pick this if you enjoy building your own editor over years, and want zero AI in the base experience.
5. Geany, best lightweight IDE-lite
Geany is a GTK-based editor that ships enough IDE features (build system integration, symbol browser, project files) to work as a small-project IDE without turning into an ecosystem. No AI, no telemetry, and a startup time measured in milliseconds. Good pick for embedded and scripting work where a full IDE is overkill.
Where it falls short: Plugin ecosystem is smaller than Sublime’s or VS Code’s. Not the tool for a giant monorepo.
Pricing:
- Free: Everything.
- Paid: Free.
Platforms: Windows, macOS, Linux.
Download: Geany
Bottom line: The pick when you want an editor that opens instantly, does the basics well, and stays out of your way.
6. Notepad++, best on Windows
Notepad++ is the Windows editor a lot of developers still reach for when they need to open a 500MB log file, run a regex find-and-replace across a folder, and close it again. No AI, no cloud, no account. The plugin manager keeps optional add-ons opt-in.
Where it falls short: Windows-only. Underlying Scintilla widget is showing its age on very large files with folding enabled.
Pricing:
- Free: Everything.
- Paid: Free.
Platforms: Windows.
Download: Notepad++
Bottom line: The default fast editor on Windows for anyone who does not want an AI window on their taskbar.
7. Micro, best modern terminal editor without Vim
Micro is a terminal-first editor that behaves like a GUI editor, with mouse support, familiar keybinds, and a plugin system in Lua. No AI, no telemetry, and a single binary you can drop on any machine. Great when you SSH into a server and want an editor that does not require thinking in modes.
Where it falls short: Smaller ecosystem than Vim or Emacs. Not the pick for a full IDE workflow.
Pricing:
- Free: Everything.
- Paid: Free.
Platforms: Windows, macOS, Linux.
Download: Micro
Bottom line: Pick this for remote work where you want a modern editor and cannot install Vim plugins on the box.
How to pick the right one
If you want the closest replacement for VS Code with no AI in the box, install Sublime Text. Package Control gives you LSP, git integration, and linting on par with the mainstream editor.
If you would rather not pay, install Kate. It is the free editor from the community that is actively pushing back on generative AI in open source.
If you already work in the terminal, install Neovim. Modal editing takes a week; the AI-free default lasts forever.
If you are on Windows and want the fastest possible startup for quick edits, install Notepad++. Nothing else opens a giant log file that quickly.
If you want a full environment you can extend indefinitely and never leave, install Emacs. Nobody outgrows Emacs.
FAQ
Does Sublime Text have any AI features?
Not in the shipped editor. Third-party packages exist that add AI features, but they are opt-in installs from Package Control, not default behavior.
Is VS Code without extensions actually AI-free?
VS Code as shipped by Microsoft prompts for Copilot on first run and includes telemetry that is off only after you disable several settings. VSCodium (the community rebuild without telemetry) is closer to AI-free but is not on this list because it is still a VS Code fork with the same UI patterns.
Can I add AI to Kate or Neovim later?
Yes, via plugins. The point is that no LLM feature is on unless you deliberately install and configure it.
Which editor is fastest to open a huge log file?
Notepad++ on Windows and Sublime Text on any OS both handle multi-hundred-megabyte files without stalling. Emacs handles even larger files if you disable folding and lock mode.
Does this editor’s telemetry send my code anywhere?
None of the seven editors above send your files to a remote server as part of the default install. Some (Sublime) check a license server, none upload buffer content.