gitwig 2.2.2

a rust based tui, an alternative to sourcetree and gitui
# Gitwig Configuration File

# Repository/directory paths shown in the main list.
items = [
]

# List of pinned repository paths. Pinned items always stay on top.
pinned = [
]

# Event-loop poll interval in milliseconds.
# Lower → more responsive, higher → less CPU. Default: 100. Sane range: 16–500.
poll_interval_ms = 500

# Maximum commits to load in workspace view. Set to 0 for unlimited.
max_commits = 100

# Number of lines/items to scroll when PageUp or PageDown is pressed.
page_size = 10

# Default sort mode for the main page.
# Options: "custom", "alphabetical", "recent_visit", "latest_changes"
sort_by = "custom"

# Whether sorting should be reversed.
sort_reverse = false

# Active theme name selection.
# Maps to config/themes/<theme_name>.theme (e.g. "default" -> config/themes/default.theme)
theme = "default"

# Configuration for interactive repository search (fzf).
[fzf]
# Maximum depth of directories fzf scans from root.
max_depth = 6

# Starting directory for interactive repository discovery via FZF.
start_dir = "~/"

# Directory paths to prune/exclude from fzf scans to keep search fast.
excludes = []

# If true, fzf repository discovery will filter and show only folders that contain a .git directory.
git_only = true

# If true, fzf is used for repository addition and bulk addition. If false, manual text input is used.
enabled = true