doc: fix toml syntax

This commit is contained in:
steven-omaha
2024-04-23 13:09:30 +02:00
parent 7e85bc39d5
commit 86880212c1
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -179,13 +179,13 @@ The following key-value pairs can be set.
The listed values are the defaults. The listed values are the defaults.
```toml ```toml
aur_helper = paru # AUR helper to use on Arch Linux (paru, yay, ...) aur_helper = "paru" # AUR helper to use on Arch Linux (paru, yay, ...)
aur_rm_args = [] # additional args to pass to AUR helper when removing packages (optional) aur_rm_args = [] # additional args to pass to AUR helper when removing packages (optional)
disabled_backends = [] # backends that pacdef should not manage, e.g. ["python"], this can reduce runtime if the package manager is notoriously slow (like pip) disabled_backends = [] # backends that pacdef should not manage, e.g. ["python"], this can reduce runtime if the package manager is notoriously slow (like pip)
warn_not_symlinks = true # warn if a group file is not a symlink warn_not_symlinks = true # warn if a group file is not a symlink
flatpak_systemwide = true # whether flatpak packages should be installed system-wide or per user flatpak_systemwide = true # whether flatpak packages should be installed system-wide or per user
pip_binary = pip # choose whether to use pipx instead of pip for python package management (see below, 'pitfalls while using pipx') pip_binary = "pip" # choose whether to use pipx instead of pip for python package management (see below, 'pitfalls while using pipx')
``` ```
+2 -2
View File
@@ -23,7 +23,7 @@ If the file contains any content that is not a valid key-value pair, pacdef will
The options together with their default values. The options together with their default values.
.TP .TP
.B aur_helper = paru .B aur_helper = "paru"
The AUR helper to use on Arch Linux The AUR helper to use on Arch Linux
.TP .TP
@@ -49,7 +49,7 @@ Warn if any group file is not a symlink and is not a child of a symlinked dir in
Whether flatpak packages should be installed system-wide or per user. Whether flatpak packages should be installed system-wide or per user.
.TP .TP
.B pip_binary = pip .B pip_binary = "pip"
Whether pipx instead of pip should be used for Python package management. Whether pipx instead of pip should be used for Python package management.
.SH SEE ALSO .SH SEE ALSO