Alacritty is a cross-platform terminal emulator that offloads all text rendering to the GPU, making it one of the fastest terminals you can run on macOS today.
What is Alacritty?
Alacritty is a free, open-source terminal emulator built around a single obsession: speed. Instead of pushing character cells through the CPU like most terminals do, Alacritty hands the entire rendering pipeline to your GPU using Metal on macOS. The result is a terminal that stays buttery smooth even when you're streaming thousands of lines of compiler output, grep results, or log tails that would make slower emulators stutter and freeze.
It ships as a lean, single binary with zero bundled plugins or UI chrome. There's no tab bar, no split panes, and no built-in multiplexer — by design. The philosophy is that your window manager or tmux handles layout; Alacritty handles rendering, and it handles it exceptionally well.
What does Alacritty do best?
Alacritty's defining strength is raw throughput — scrolling through dense output feels instantaneous in a way that iTerm2 and even Kitty occasionally can't match on slower hardware.
Beyond raw speed, the configuration experience is a highlight once you accept the approach. Everything lives in a single alacritty.toml file — colors, font, padding, key bindings, opacity, cursor shape — and the terminal hot-reloads the config the moment you save. No restarts, no dialog boxes. I keep my config in a dotfiles repo and the instant-reload loop makes tuning it genuinely enjoyable.
It also has first-class support for Nerd Fonts, true-color output, and 24-bit color themes. If you run a color scheme like Catppuccin or Tokyo Night across Neovim and your shell, Alacritty renders it faithfully without the color-banding artifacts some terminals introduce.
Who should use Alacritty?
Alacritty is built for developers who live in the terminal and have already formed opinions about their tool chain. If you rely on tmux or Zellij for sessions and splits, Alacritty pairs beautifully — it stays out of the way and gives your multiplexer a fast, crisp canvas to paint on.
It's particularly compelling on older or thermally-constrained Macs. Because rendering is delegated to the GPU rather than pegging a CPU core, sustained terminal workloads — long builds, log streaming, test runners spitting thousands of lines — feel markedly lighter on the system.
If you want a terminal that does everything out of the box — tabs, sidebars, profiles GUI, session restore — look at iTerm2 or Warp instead. Alacritty rewards the developer who wants control over every layer and is comfortable wiring the pieces together themselves.
How does Alacritty compare to iTerm2 and Kitty?
iTerm2 is the feature king: it ships with a profile manager, split panes, scripting hooks, and a tmux integration that's genuinely magical. But all that capability comes at a cost — iTerm2 is noticeably heavier, and on an older Intel Mac you can watch it struggle under sustained log output. Alacritty never buckles there.
Kitty is the closest spiritual cousin. It is also GPU-rendered, also config-file-driven, and also fast. Kitty pulls ahead with its native tab/window system and the powerful kitten extension model; Alacritty pulls ahead on minimalism and startup time. I've run both for months at a time — Kitty if I want a self-contained terminal, Alacritty when I want the fastest possible layer under tmux.
Warp occupies a different category entirely: it reimagines the terminal as a modern IDE-adjacent tool with AI assistance and block-based output. It's impressive, but it's the opposite of Alacritty's philosophy.
Is Alacritty free?
Yes, Alacritty is completely free and open-source, released under the Apache 2.0 license. There are no paid tiers, no telemetry, and no account required. It is installable via Homebrew (brew install --cask alacritty) and actively maintained on GitHub with regular releases.
The project does not accept donations or sell anything — it exists purely as a community-driven open-source tool. The only cost is the time you'll invest learning its configuration format, which pays off quickly.