Added yazi as base file manager

This commit is contained in:
Michel Fedde 2025-02-23 18:55:37 +01:00
parent 59565c04f9
commit 3a685df812
5 changed files with 25 additions and 1 deletions

9
.config/yazi/keymap.toml Normal file
View file

@ -0,0 +1,9 @@
[manager]
prepend_keymap = [
{ on = "<S-l>", desc = "Move to the tab on the left", run = "tab_switch 1 --relative" },
{ on = "<S-h>", desc = "Move to the tab on the right", run = "tab_switch -1 --relative" },
{ on = ["<Space>", 'z'], desc = "Zip the selected files", run = "shell '7z a .zip \"$@\"' --interactive --cursor=5"}
]
append_keymap = [
{ on = ['c', 'v'], desc = "Drag selected files", run = "shell 'blobdrop -b \"$@\"'" },
]