diff --git a/dot_config/yazi/yazi.toml b/dot_config/yazi/yazi.toml index 3450497..3c36069 100644 --- a/dot_config/yazi/yazi.toml +++ b/dot_config/yazi/yazi.toml @@ -1,14 +1,14 @@ [plugin] prepend_previewers = [ - { name = "*.md", run = "glow" }, - { name = "*.bin", run = "hexyl" }, + { url = "*.md", run = "glow" }, + { url = "*.bin", run = "hexyl" }, ] append_previewers = [ - { name = "*.md", run = "glow" }, - { name = "*.csv", run = "rich-preview" }, - { name = "*.rst", run = "rich-preview" }, - { name = "*.ipynb", run = "rich-preview" }, - { name = "*.json", run = "rich-preview" }, + { url = "*.md", run = "glow" }, + { url = "*.csv", run = "rich-preview" }, + { url = "*.rst", run = "rich-preview" }, + { url = "*.ipynb", run = "rich-preview" }, + { url = "*.json", run = "rich-preview" }, { mime = "application/*zip", run = "ouch" }, { mime = "application/x-tar", run = "ouch" }, { mime = "application/x-bzip2", run = "ouch" }, @@ -16,9 +16,9 @@ append_previewers = [ { mime = "application/x-rar", run = "ouch" }, { mime = "application/x-xz", run = "ouch" }, { mime = "application/xz", run = "ouch" }, - { name = "*", run = "hexyl" }, + { url = "*", run = "hexyl" }, ] prepend_fetchers = [ - { id = "git", name = "*", run = "git" }, - { id = "git", name = "*/", run = "git" }, + { id = "git", url = "*", run = "git" }, + { id = "git", url = "*/", run = "git" }, ]