feat: add scroll speed to config (#1968)

This commit is contained in:
Aiden Cline 2025-08-15 13:21:02 -05:00 committed by GitHub
commit dc01071498
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 116 additions and 62 deletions

View file

@ -576,6 +576,15 @@ export type Config = {
* Custom keybind configurations
*/
keybinds?: KeybindsConfig
/**
* TUI specific settings
*/
tui?: {
/**
* TUI scroll speed
*/
scroll_speed: number
}
plugin?: Array<string>
snapshot?: boolean
/**