-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.ini.example
More file actions
121 lines (86 loc) · 3.56 KB
/
settings.ini.example
File metadata and controls
121 lines (86 loc) · 3.56 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# FlowState default settings
# Copy this file to settings.ini — it will be created automatically on first run.
# Changes are saved live via the tray icon HUD (Ctrl+Shift+Alt+Arrows on Windows,
# Cmd+Shift+Option+Arrows on macOS).
[Settings]
# Average delay between keystrokes in milliseconds
usermeandelay = 110
# Variance in keystroke delay (higher = more erratic rhythm)
uservariance = 45
# Chance of making a typo per keystroke (percentage, 0-100)
typochance = 7
# Pause after making and correcting a typo (milliseconds)
typodelay = 100
# Chance of a multi-word revision / retyping event (percentage, 0-100)
revisionchance = 3
[Advanced]
# Pause after sentence-ending punctuation (milliseconds)
sentencepausems = 1200
# Pause between paragraphs (milliseconds)
paragraphpausems = 2000
# Average number of words between "brainstorm" (thinking) pauses
brainstormfrequency = 60
# Pause after typing an emoji (milliseconds)
emojipausems = 1800
# Minimum mid-sentence composition hesitation (milliseconds); sentence/paragraph ends use higher bands within max
compositionpauseminms = 300
# Maximum composition pause at paragraph ends (milliseconds)
compositionpausemaxms = 6000
# Minimum pause before starting a new paragraph (milliseconds)
paragraphplanningminms = 2000
# Maximum pause before starting a new paragraph (milliseconds)
paragraphplanningmaxms = 8000
# Scale for content-aware pauses (0-100, 50 = normal)
compositionsensitivity = 50
[Behavior]
# Enable spatial/transposition/omission/doubling typos
enabletypos = 1
# Enable word-level revisions (legacy; use EnableSmartRevisions instead)
enablerevisions = 1
# Enable random "brainstorm" pauses
enablebrainstormpauses = 1
# Use plain Enter instead of Shift+Enter for new lines
useenteronly = 0
# Enable rich-text formatting (bold, italic, lists, headings)
enablerichtext = 1
# Smart revisions — type a WordNet synonym, backspace, then correct
enablesmartrevisions = 1
# Semantic speed — rare words slower, common words faster (spaCy token.rank)
enablesemanticspeed = 1
# Entity care — fewer typos on named entities (people, places, orgs)
enableentitycare = 1
# Clause pauses — micro-pauses at subordinate clause boundaries
enableclausepauses = 1
# Chunk burst — type noun phrases as single cognitive bursts
enablechunkburst = 1
# Frequency-based typos — common words have fewer typos
enablefrequencytypos = 1
# Deferred corrections — finish the current word before backspacing a typo
enabledeferredcorrections = 1
# Same-finger penalty — slower when same finger types two consecutive chars
enablefingerpenalty = 1
# Fluency states — alternate between fluent and disfluent typing periods
enablefluencystates = 1
# Number / symbol care — slower, fewer typos on digits and symbols
enablenumbersymbolcare = 1
# Caps Lock realism — delay on first capital only in a run
enablecapsrunrealism = 1
# Composition pauses — content-aware drafting hesitation
enablecompositionpauses = 0
[Hotkeys]
triggerhotkey = ctrl+alt+v
pausekey = esc
# ─── Per-App Profiles ──────────────────────────────────────────────────────
# Profiles override typing settings when the active window title matches
# the WindowPattern (case-insensitive substring match).
# Example: a Slack profile that types faster with fewer pauses.
# [Profile:Slack]
# WindowPattern=slack
# usermeandelay = 25
# uservariance = 35
# typochance = 2
# enableclausepauses = 0
# [Profile:Google Docs]
# WindowPattern=docs.google.com
# usermeandelay = 45
# uservariance = 50