30 lines
743 B
TOML
30 lines
743 B
TOML
[manager]
|
|
show_hidden = true
|
|
linemode = "owner"
|
|
|
|
[plugin]
|
|
prepend_previewers = [
|
|
# Archive previewer
|
|
{ mime = "application/*zip", run = "ouch" },
|
|
{ mime = "application/x-tar", run = "ouch" },
|
|
{ mime = "application/x-bzip2", run = "ouch" },
|
|
{ mime = "application/x-7z-compressed", run = "ouch" },
|
|
{ mime = "application/x-rar", run = "ouch" },
|
|
{ mime = "application/x-xz", run = "ouch" },
|
|
{ mime = "application/xz", run = "ouch" },
|
|
]
|
|
|
|
[[plugin.prepend_fetchers]]
|
|
id = "git"
|
|
name = "*"
|
|
run = "git"
|
|
|
|
[[plugin.prepend_fetchers]]
|
|
id = "git"
|
|
name = "*/"
|
|
run = "git"
|
|
|
|
[opener]
|
|
extract = [
|
|
{ run = 'ouch d -y "$@"', desc = "Extract here with ouch", for = "unix" },
|
|
]
|