gitwig 1.2.3

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 = 100

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

# 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 = [
    "System",
    "Library",
    "Applications",
    "private",
    "var",
    "usr",
    "bin",
    "sbin",
    "dev",
    "Volumes",
    "cores",
    "opt",
    ".git",
    "node_modules",
    ".Trash",
    ".cargo",
    ".npm"
]