# Ultimate web developer setup 2026: Sublime Text

> Source: <https://www.scopecreep.co.uk/ultimate-web-developer-setup-2026-sublime-text/>
> Published: 2026-07-29 08:00:00+00:00

# Ultimate web developer setup 2026: Sublime Text

*The second of three setup guides.* The first covered [VS Code](https://www.scopecreep.co.uk/ultimate-web-developer-setup-2026-vs-code/), the editor you're statistically already using; the third covers [Zed](https://www.scopecreep.co.uk/ultimate-web-developer-setup-2026-zed/), the new one from Atom's creators. This one covers the editor that outlived every obituary written for it.

Sublime Text should, by all the usual logic, be **dead**. It costs money in a market where the dominant player is free. Its extension ecosystem is a fraction of VS Code's. It has no built-in AI assistant, no company burning venture capital on it, and no marketing beyond word of mouth. And yet in 2026 it remains the answer to a question a meaningful number of developers still ask: what is the fastest, most reliable way to edit text, full stop? Open a 200MB log file in VS Code and then open it in Sublime, and the licence fee starts explaining itself.

That's the honest positioning. Sublime Text in 2026 is not trying to be your everything. It's a precision tool for people who want the editor to disappear, and the setup below leans into that rather than fighting it.

## Buy it, and why that's the point

Sublime Text 4 costs $99 US for a personal licence, which includes three years of updates and works across all your machines and operating systems. You can evaluate it indefinitely with a periodic nag, but buy it if you settle in. Partly because that's fair. Mostly because the business model is the feature: you are the customer, not the engagement metric. No account sign-in, no strategy pivot where your editor becomes a funnel for someone's cloud service. In 2026 that arrangement is rare enough to be worth £80-odd of anyone's money.

## Package Control and the short list

Setup starts with Package Control, installed from the command palette (`Tools > Install Package Control`

, then `Ctrl/Cmd+Shift+P`

for everything after). Sublime's ecosystem is smaller than VS Code's, but the web development core is covered by five packages:

**LSP**, plus the language servers for your stack:`LSP-typescript`

,`LSP-css`

,`LSP-json`

, and`LSP-eslint`

cover most front-end work. This is the package that changed Sublime's fate, bringing the same language servers VS Code uses, so you get real completions, go-to-definition and inline diagnostics without giving up the speed.**Emmet**, for expanding abbreviations into HTML and CSS. Sublime is where many people met Emmet; it still belongs here.** Terminus**, a terminal inside the editor, for those who've been VS Code-trained to expect one.** A File Icon**, purely cosmetic, but the sidebar is easier to scan with file-type icons and there's no performance tax worth mentioning.**SublimeLinter** only if your workflow needs linters outside what LSP provides; otherwise let the language servers do it and keep the install lean.

Git needs no package at all for the basics: Sublime Text 4 shows inline diff markers natively, and if you want a full Git client, Sublime Merge is made by the same company, shares the licence philosophy, and is quietly one of the best Git GUIs available on any platform.

## Settings worth changing

Preferences are a JSON file, and the deviations that matter are few:

```
{
  "font_face": "JetBrains Mono",
  "font_size": 13,
  "save_on_focus_lost": true,
  "trim_trailing_white_space_on_save": "all",
  "ensure_newline_at_eof_on_save": true,
  "index_files": true,
  "hardware_acceleration": "opengl"
}
```

`save_on_focus_lost`

is the sleeper: combined with a dev server watching your files, tabbing across to the browser saves and rebuilds in one motion. Hardware acceleration is worth switching on for high-refresh displays, where Sublime's rendering goes from fast to genuinely luxurious. The Mariana colour scheme and Adaptive theme ship in the box and need no replacement, though the theme community will happily disagree.

## The features that are the actual setup

More than either other editor in this series, Sublime's ultimate setup is muscle memory rather than configuration. Three things to drill. Goto Anything (`Ctrl/Cmd+P`

) is fuzzy navigation to any file, and with `@`

appended, to any symbol within it; Sublime popularised this pattern and its implementation is still the snappiest. Multiple cursors (`Ctrl/Cmd+D`

to take the next occurrence, and mouse or keyboard to place cursors freely) originated here, and using them fluently converts most refactor-shaped drudgery into a single edit performed everywhere at once. And Project switching (`Ctrl/Cmd+Alt+P`

) makes hopping between codebases instant, because the editor starts fast enough that "closing everything" costs nothing.

That last point is the theme. Sublime opens in well under a second, handles files that make Electron editors wheeze, and never asks you to wait for it. The setup above deliberately adds nothing that compromises this, which is why the package list stops at five.

## Where Sublime loses

Everything said, the gaps *are* real and worth naming. There's no built-in AI assistance, and while LSP-copilot exists as a community bridge, anyone whose daily workflow is agent-driven will find Sublime a poor host for it; that workflow belongs in the [Zed](https://www.scopecreep.co.uk/ultimate-web-developer-setup-2026-zed/) article, where it's native, or [VS Code](https://www.scopecreep.co.uk/ultimate-web-developer-setup-2026-vs-code/), where it's official.

Debugging support is thin compared to both rivals. And the ecosystem, while sufficient, is maintained by a small community, so the newest tooling arrives here last, if at all.

Which resolves to a clear recommendation. If your work is agent-assisted and integration-heavy, read the other two articles in this series and pick between them. But if what you value is an editor that opens instantly, handles anything, respects you as a paying customer and then gets out of the way entirely, Sublime remains, fifteen-plus years in, the sharpest knife in the drawer.

**Some tools survive every hype cycle by simply being excellent.** This is one, and the ultimate setup for it is mostly the restraint to leave it alone.
