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
# This is an example configuration file for reponest.
# Copy this file to one of the following locations and customize it as needed:
# - ~/.config/reponest/config.toml (Linux/macOS)
# - ~/Library/Application Support/reponest/config.toml (macOS)
# - %APPDATA%\reponest\config.toml (Windows)
#
# All settings are optional. If omitted, default values will be used.
# CLI arguments will override values specified in this file.
[]
# Directories to scan for git repositories
# Default: [home directory]
= ["~/Projects", "~/workspace"]
# Maximum depth for directory scanning
# 0 means unlimited depth (not recommended for large filesystems)
# Default: 5
= 5
[]
# TUI theme
# Default: "default"
= "default"
# Key bindings for TUI
[]
# Quit the application
= ["q"]
# Move selection up
= ["k", "Up"]
# Move selection down
= ["j", "Down"]
# View repository details
= ["l", "Right"]
# Go back from details view
= ["Esc"]
# Change directory to selected repository (requires shell wrapper)
= ["o"]
# Open repository in file manager
= ["O", "Enter"]