26 lines
756 B
TOML
26 lines
756 B
TOML
[opener]
|
|
edit = [
|
|
{ run = 'nvim "$@"', block = true, for = "unix" },
|
|
]
|
|
play = [
|
|
{ run = 'mpv "$@"', orphan = true, for = "unix" },
|
|
]
|
|
open = [
|
|
{ run = 'xdg-open "$@"', desc = "Open" },
|
|
]
|
|
extract = [
|
|
{ run = 'ouch d -y "%*"', desc = "Extract here with ouch", for = "windows" },
|
|
{ run = 'ouch d -y "$@"', desc = "Extract here with ouch", for = "unix" },
|
|
]
|
|
|
|
[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" },
|
|
]
|