16 lines
414 B
TOML
16 lines
414 B
TOML
|
|
[manager]
|
||
|
|
show_hidden = true
|
||
|
|
|
||
|
|
[[plugin.prepend_previewers]]
|
||
|
|
url = "*.tar*"
|
||
|
|
run = 'piper --format=url -- tar tf "$1"'
|
||
|
|
[[plugin.prepend_previewers]]
|
||
|
|
url = "*.csv"
|
||
|
|
run = 'piper -- bat -p --color=always "$1"'
|
||
|
|
[[plugin.prepend_previewers]]
|
||
|
|
url = "*.md"
|
||
|
|
run = 'piper -- CLICOLOR_FORCE=1 glow -w=$w -s=dark "$1"'
|
||
|
|
[[plugin.prepend_previewers]]
|
||
|
|
mime = "application/sqlite3"
|
||
|
|
run = 'piper -- sqlite3 "$1" ".schema --indent"'
|