stygio/.config/yazi/yazi.toml
2025-07-10 10:10:18 -07:00

46 lines
796 B
TOML

[mgr]
show_hidden = true
[opener]
# ----- OPEN ----- #
# Open with firefox
firefox = [
{run = 'firefox "$@"', block = true, desc = "Open with Firefox"}
]
# Open in LibreOffice
libreoffice = [
{run = '', block = true, desc = "Open with LibreOffice"}
]
# ----- EDIT ----- #
# Open in the current terminal
edit = [
{run = 'nvim "$@"', block = true, desc = "Open in the current terminal"},
]
# Open in a new terminal
editSpawn = [
{run = 'wezterm start nvim "$@"', block = true, desc = "Open in a new terminal"}
]
# ----- EXTRACTIONS ----- #
# Extract .zip
extractZip = [
{run = 'unzip "$@"', desc = "Extract"}
]
# Extract .tz
[open]
rules = [
{ name = "*.pdf", use = ["firefox"]},
{ name = "*", use = ["edit", "editSpawn"]},
{ name = "*/", use = ["edit", "editSpawn"]}
]