You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/configurations/config-file-format.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,9 @@ height = 20
43
43
[ui.refs]
44
44
width = 26
45
45
46
+
[graph]
47
+
row_image_width = "compact"
48
+
46
49
[graph.color]
47
50
branches = [
48
51
"#E06C76",
@@ -167,6 +170,18 @@ The initial selection of commit when starting the application.
167
170
168
171
The value specified in the command line argument takes precedence.
169
172
173
+
### `graph.row_image_width`
174
+
175
+
The width mode for each graph row image.
176
+
177
+
- type: `string` (enum)
178
+
- default: `compact`
179
+
- possible values:
180
+
-`compact`: trim each row image to the minimum required graph width
181
+
- Reduces the file size for more lightweight operation. If you are using `kitty-unicode` protocol, it helps you avoid hitting [the image transfer size limit](https://sw.kovidgoyal.net/kitty/graphics-protocol/#image-persistence-and-storage-quotas).
182
+
-`fixed`: use the same full graph width for every row image
183
+
- This can be used when you want to set a background color for graphs in environments that cannot correctly handle transparent images, or in environments where rendering does not work well when there are images of various widths.
0 commit comments