mirror of
https://github.com/mickael-menu/zk
synced 2024-11-17 09:25:44 +00:00
16 lines
524 B
Markdown
16 lines
524 B
Markdown
# Notebook configuration
|
|
|
|
The `[notebook]` section from the [configuration file](config.md) is used to set the default notebook directory.
|
|
If the path starts with `~` it will be replaced with the user home directory (`$HOME`). This property also supports environment variables.
|
|
|
|
```toml
|
|
[notebook]
|
|
dir = "~/notebook" # same as "$HOME/notebook"
|
|
```
|
|
|
|
The following properties are customizable:
|
|
|
|
* `dir` (string)
|
|
* Path of the default notebook.
|
|
* Only available in the global config file (`~/.config/zk/config.toml`).
|