Configuration
VellumFE uses TOML files for configuration, stored in ~/.vellum-fe/.
Configuration Files
| File | Purpose |
|---|---|
| config.toml | General settings (UI, connection, behavior) |
| layout.toml | Window positions, sizes, and properties |
| keybinds.toml | Keyboard shortcuts |
| highlights.toml | Text highlighting rules |
| colors.toml | Color palette definitions |
Per-Character Configuration
When you specify --character NAME, VellumFE looks for character-specific files:
~/.vellum-fe/
├── config.toml # Global defaults
├── layout.toml # Global layout
├── characters/
│ └── CharName/
│ ├── config.toml # Character overrides
│ └── layout.toml # Character layout
Character-specific files override global settings.
Editing Configuration
You can edit files directly, or use the in-client menu:
- Press
F1to open the main menu - Navigate to Config submenu
- Select the file to edit
Changes to layout are saved automatically. Other config changes require restart.
Resetting to Defaults
Delete a configuration file to reset it to defaults on next launch:
rm ~/.vellum-fe/layout.toml
Or delete the entire directory for a full reset:
rm -rf ~/.vellum-fe