yazi added file-extra-metadata

This commit is contained in:
Henrik Bakken
2025-11-06 14:41:45 +01:00
parent 91be525403
commit 5902e9ad33
2 changed files with 18 additions and 8 deletions
+8
View File
@@ -49,3 +49,11 @@ run = 'piper -- CLICOLOR_FORCE=1 glow -w=$w -s=dark "$1"'
[[plugin.prepend_previewers]]
name = "*/"
run = 'piper -- eza -TL=3 --color=always --icons=always --group-directories-first --no-quotes "$1"'
[[plugin.append_previewers]]
name = "*"
run = 'file-extra-metadata'
[[plugin.prepend_spotters]]
name = "*"
run = 'file-extra-metadata'
+10 -8
View File
@@ -91,6 +91,7 @@ installmap = dict(
"gparted",
"sshfs",
"file-roller",
"7zip", # explore zip files
"zoxide", # quick search
"eza", # pretty alternative to `ls`
"glow", # markdown renderer
@@ -286,15 +287,16 @@ def install_filebrowsers(overwrite: bool, reinstall: bool) -> None:
helper_symlink_foldercontent(CFG_SRC, CFG_TGT, "ranger", overwrite)
helper_symlink_foldercontent(CFG_SRC, CFG_TGT, "yazi", overwrite)
for plugin in [
"chmod",
"git",
"mount",
"piper",
"smart-enter",
"smart-filter",
"toggle-pane",
"yazi-rs/plugins:chmod",
"yazi-rs/plugins:git",
"yazi-rs/plugins:mount",
"yazi-rs/plugins:piper",
"yazi-rs/plugins:smart-enter",
"yazi-rs/plugins:smart-filter",
"yazi-rs/plugins:toggle-pane",
"boydaihungst/file-extra-metadata",
]:
run(f"ya pkg add yazi-rs/plugins:{plugin}".split())
run(f"ya pkg add {plugin}".split())
def install_netbrowsers(overwrite: bool, reinstall: bool) -> None: