From 081097e5682287abd6a114d5453ac3f114a60e4d Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Thu, 7 Nov 2024 12:14:46 +0300 Subject: [PATCH] Yazi: Add gr and gm. --- home/config/yazi/module/Keymap.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/home/config/yazi/module/Keymap.nix b/home/config/yazi/module/Keymap.nix index 7324dd36..7ff23e8a 100644 --- a/home/config/yazi/module/Keymap.nix +++ b/home/config/yazi/module/Keymap.nix @@ -23,7 +23,9 @@ { on = [ "g" "T" ]; desc = "Go to system tmp"; run = "cd /tmp"; } { on = [ "g" "c" ]; desc = "Go to configs"; run = "noop"; } { on = [ "g" "d" ]; desc = "Go to downloads"; run = "cd $XDG_DOWNLOAD_DIR"; } + { on = [ "g" "m" ]; desc = "Go to mnt"; run = "cd /mnt"; } { on = [ "g" "p" ]; desc = "Go to projects"; run = "cd ~/project"; } + { on = [ "g" "r" ]; desc = "Go to root"; run = "cd /"; } { on = [ "g" "s" ]; desc = "Go to storage"; run = "cd /storage"; } { on = [ "g" "t" ]; desc = "Go to tmp"; run = "cd ~/tmp"; } ];