pay-respects/config.md

31 lines
795 B
Markdown
Raw Normal View History

2025-06-11 12:10:30 +02:00
# Configuration File
Configuration file for `pay-respects` is located at:
- `$HOME/.config/pay-respects/config.toml` (*nix)
- `%APPDATA%/pay-respects/config.toml` (Windows)
## Options
All available options are listed in the following example file:
```toml
# maximum time in milliseconds for getting previous output
timeout = 3000
2025-06-11 13:59:59 +02:00
# how suggestions are evaluated after being confirmed
# options can be:
# - Internal: commands are evaluated inside `pay-respects`
# - Shell: current working shell is responsible for execution
eval_method = "Internal"
2025-06-11 12:10:30 +02:00
[package_manager]
# preferred package manager
package_manager = "pacman"
2025-06-11 13:59:59 +02:00
# preferred installation method, can be limited by the package manager
2025-06-11 13:22:51 +02:00
# available options are:
# - System
# - Shell (nix and guix only)
2025-06-11 12:10:30 +02:00
install_method = "System"
```