Configuration
All settings live in a single global JSON file:
~/.config/e/config.json
Press ⌘, for a graphical settings page covering the common options. The
raw file (with advanced sections like agents, snippets, keybindings) can be
opened from the command palette via Open Settings (config.json) — it is
created on first use.
Settings reference
{
"dark": true, // dark theme (false = light)
"font_size": 14, // editor font size (8–40)
"tab_width": 4, // spaces per indent level (1–16)
"format_on_save": true, // format via the language server on save
"trim_on_save": true, // trim trailing whitespace + ensure final newline
"autosave": true, // save dirty buffers after a short idle period
"indent_guides": true, // show indentation guide lines
"auto_close": true, // auto-close brackets and quotes
"inlay_hints": true, // show LSP inlay hints (types, parameter names)
"sticky_scroll": true, // pin enclosing scope lines at the top while scrolling
"sidebar_side": "left", // explorer/Git panel side: "left" or "right"
"agent_side": "right", // agent panel side: "right" or "left"
"keybindings": { "cmd+k": "delete-line" }, // override or add bindings
"agents": { /* see below */ }
}
| Key | Type | Default | Description |
|---|---|---|---|
dark |
bool | true |
Dark or light theme |
font_size |
int | 14 |
Editor font size (clamped 8–40) |
tab_width |
int | 4 |
Indent width (clamped 1–16) |
format_on_save |
bool | true |
Format the document on save |
trim_on_save |
bool | true |
Trim trailing whitespace on save |
autosave |
bool | true |
Idle auto-save |
indent_guides |
bool | true |
Indentation guides |
auto_close |
bool | true |
Auto-close brackets/quotes |
inlay_hints |
bool | true |
Show LSP inlay hints |
sticky_scroll |
bool | true |
Pin enclosing scope at the top |
sidebar_side |
string | "left" |
Side of the explorer/Git sidebar ("left" or "right") |
agent_side |
string | "right" |
Side of the agent panel ("right" or "left") |
agents |
object | built-ins | AI agent configuration |
Panel layout (
sidebar_side,agent_side) is read at startup — restarteafter changing it. By default the explorer/Git sidebar is on the left and the agent panel on the right; set them to swap sides.
Keybindings
Every action is a named command; rebind any of them in the keybindings section.
See Keybindings for the syntax and the full command list.
Themes
e ships with a light and a dark theme. Toggle between them with F8; the
choice is saved to config.json. The theme is fully reactive — the whole UI and
editor update instantly.
Zoom & word wrap
⌘=/⌘-change the editor font size for the session;⌘0resets to your configuredfont_size.⌥Ztoggles soft word wrap.
Agents
See AI Agents for the agents section (default agent and the list
of configurable agents).
Where things are stored
| Path | Contents |
|---|---|
~/.config/e/config.json |
Global settings |
~/.config/e/sessions/ |
Per-workspace session state (open files, tabs, split) |
Sessions are restored automatically when you reopen a workspace.