-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtrueflow.example.toml
More file actions
65 lines (59 loc) · 1.74 KB
/
trueflow.example.toml
File metadata and controls
65 lines (59 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# trueflow runtime configuration (defaults)
# Project brand/site metadata lives separately in `trueflow.metadata.toml`.
[review]
# Only include specific block kinds (case-insensitive). Empty means all.
only = []
# Exclude block kinds from review output.
exclude = []
[feedback]
# Only include specific block kinds (case-insensitive). Empty means all.
only = []
# Exclude block kinds from feedback output.
exclude = []
# Default feedback history window. Supports all|last, relative durations like
# "1h", unix timestamps, and RFC3339 values.
# default_since = "all"
[scan]
# Read/write the scan cache under ~/.trueflow/cache by default.
use_cache = true
write_cache = true
# cache_dir = ".trueflow/cache"
# Additional exact-name ignores, applied anywhere in the tree.
ignore_names = []
# Additional repo-relative path-prefix ignores.
ignore_path_prefixes = []
# Additional gitignore-style glob ignores.
ignore_globs = []
[tui]
# Require confirmation modal for batch actions affecting >= N review blocks, or "never".
confirm_batch_sub_blocks = 2
# Diff-mode line numbers: disabled|old_new. Default keeps diffs focused on +/- content.
diff_line_numbers = "disabled"
[tui.keybinds]
# Keybind defaults. Arrow keys mirror prev/next and up/down.
scroll_up = "k"
scroll_down = "j"
prev = "h"
next = "l"
parent = "P"
child = "C"
approve = "a"
note = "c"
toggle_view = "m"
speed_read = "r"
root = "g"
quit = "q"
[tui.speed_read]
# Enable speed-reading mode in the TUI (`r` to toggle on block nodes).
enabled = true
default_wpm = 320
min_wpm = 120
max_wpm = 900
default_chunk_words = 2
min_chunk_words = 1
max_chunk_words = 5
loop_playback = false
show_orp_highlight = false
show_prose_optimization_hint = true
punctuation_dwell = "light" # off|light
punctuation_dwell_multiplier = 1.15