@rivolink/leaf-darwin-arm64 1.17.0 → 1.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -0
- package/leaf +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -120,6 +120,24 @@ cat TESTING.md | leaf
|
|
|
120
120
|
|
|
121
121
|
```
|
|
122
122
|
|
|
123
|
+
## Configuration
|
|
124
|
+
|
|
125
|
+
Set default values for theme, editor, and watch mode via `config.toml`:
|
|
126
|
+
|
|
127
|
+
```bash
|
|
128
|
+
leaf --config
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
This opens the configuration file in your editor. If the file does not exist yet, leaf creates it with documented defaults.
|
|
132
|
+
|
|
133
|
+
```toml
|
|
134
|
+
theme = "ocean" # arctic, forest, ocean, solarized-dark
|
|
135
|
+
editor = "nano" # any editor in PATH
|
|
136
|
+
watch = false # auto-reload when opening a file
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
All settings are optional. CLI arguments always take priority. See [`config.toml`](config.toml) for details.
|
|
140
|
+
|
|
123
141
|
## Keybindings
|
|
124
142
|
|
|
125
143
|
| Key | Action |
|
package/leaf
CHANGED
|
Binary file
|