25fb843c40
The prior commit switched the recipe to `[source] path = "source"`, but .gitignore:77 still listed `local/recipes/shells/brush/source` (a leftover from when brush was a transient upstream git fetch), so the vendored tree was not tracked — a fresh clone would have no brush source and the build would fail. Drop that ignore line and commit the vendored working tree (reubeno/brush @ 897b373e, with the Redox port patches pre-applied). brush is now a durable local fork like the other path=source recipes. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
23 lines
766 B
TOML
23 lines
766 B
TOML
# Sample brush configuration file
|
|
# Copy this file to ~/.config/brush/config.toml on Linux/macOS
|
|
# or %APPDATA%\brush\config.toml on Windows
|
|
#
|
|
# For schema-based validation in VS Code (with Even Better TOML extension):
|
|
#:schema https://raw.githubusercontent.com/reubeno/brush/main/schemas/config.schema.json
|
|
|
|
# User interface settings
|
|
[ui]
|
|
# Enable syntax highlighting in the input line.
|
|
# Default: false (true when built with the 'experimental' feature)
|
|
syntax-highlighting = true
|
|
|
|
# Experimental features (may change or be removed in future versions)
|
|
[experimental]
|
|
# Enable zsh-style preexec/precmd hooks.
|
|
# Default: false
|
|
zsh-hooks = false
|
|
|
|
# Enable terminal shell integration (for terminals that support it).
|
|
# Default: false
|
|
terminal-shell-integration = false
|