Add yazi, cleanup colors

This commit is contained in:
Ian Keane 2026-08-01 12:36:16 -04:00
parent d79c97622f
commit 463f4d53f9
9 changed files with 213 additions and 0 deletions

24
config/yazi/yazi.toml Executable file
View file

@ -0,0 +1,24 @@
[mgr]
ratio = [1, 3, 4]
[preview]
max_width = 1200
max_height = 1400
[opener]
image = [
{ run = 'sxiv "$@"', desc = "sxiv" },
]
video = [
{ run = 'mpv "$@"', desc = "mpv" },
]
audio = [
{ run = 'mpv "$@"', desc = "mpv" },
]
[open]
rules = [
{ mime = "image/*", use = "image" },
{ mime = "video/*", use = "video" },
{ mime = "audio/*", use = "audio" },
]