Configuration¶
marimo offers two types of configuration: User Configuration and App Configuration. Both can be easily managed through the Settings menu in the marimo editor.
App Configuration¶
App Configuration is specific to each notebook and is stored in the notebook.py
file. This allows you to customize various aspects of your notebook, including:
Notebook width
Notebook title
Automatically download HTML snapshots
Configure these settings through the notebook menu (⚙️) in the top-right corner.
User Configuration¶
User Configuration applies globally across all marimo notebooks and is stored
in a .marimo.toml
file.
While you can edit the .marimo.toml
file directly, we recommend using the
marimo UI for a more user-friendly experience.
You can customize the following settings:
Runtime, including whether notebooks autorun
Completion (auto-completion, AI copilot, etc.)
Display (theme, font size, output placement, etc.)
Autosave
Server settings
Formatting settings
Experimental features
User configuration file¶
marimo searches for the .marimo.toml
file in the following order:
Current directory
Parent directories (moving up the tree)
Home directory (
~/.marimo.toml
)XDG directory (
~/.config/marimo/marimo.toml
or$XDG_CONFIG_HOME/marimo/marimo.toml
)
If no .marimo.toml
file is found, marimo creates one for you in an XDG config
compliant way.
To view your current configuration and locate the config file, run:
marimo config show
To describe the user configuration options, run:
marimo config describe
Overriding settings with pyproject.toml¶
You can override user configuration settings with a pyproject.toml
file. This
is useful for sharing configurations across teams or ensuring consistency across
notebooks. You must edit the pyproject.toml
file directly to override settings.
For example, the following pyproject.toml
file overrides the autosave
setting
in the user configuration:
[tool.marimo.format]
line_length = 120
[tool.marimo.display]
default_width = "full"
You can override any user configuration setting in this way. To find these settings run marimo config show
.
Environment Variables¶
marimo supports the following environment variables for advanced configuration:
Environment Variable |
Description |
Default Value |
---|---|---|
|
Maximum size of output that marimo will display. Outputs larger than this will be truncated. |
5,000,000 (5MB) |
|
Maximum size of standard stream (stdout/stderr) output that marimo will display. Outputs larger than this will be truncated. |
1,000,000 (1MB) |
|
If set to “1”, marimo will skip checking for updates when starting. |
Not set |
|
Default limit for SQL query results. If not set, no limit is applied. |
Not set |
Tips¶
The
.marimo.toml
file can be version controlled to share configurations across teamsApp configurations can be committed with notebooks to ensure consistent appearance