From fc2d94585bee04c62aae2972c331137ccc7c98ae Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Wed, 11 Dec 2024 17:40:53 +0300 Subject: [PATCH] Yazi: Add go game. --- home/file/yazi/module/Keymap.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/home/file/yazi/module/Keymap.nix b/home/file/yazi/module/Keymap.nix index 38eb973c..c5359cae 100644 --- a/home/file/yazi/module/Keymap.nix +++ b/home/file/yazi/module/Keymap.nix @@ -26,12 +26,14 @@ { on = [ "g" "S" ]; desc = "Go to storage"; run = "cd /storage"; } { on = [ "g" "T" ]; desc = "Go to system tmp"; run = "cd /tmp"; } { on = [ "g" "U" ]; desc = "Go to user"; run = "cd /run/user/$UID"; } - { on = [ "g" "c" ]; desc = "Go to configs"; run = "noop"; } + # { on = [ "g" "c" ]; desc = "Go to configs"; run = "noop"; } { on = [ "g" "d" ]; desc = "Go to downloads"; run = "cd $XDG_DOWNLOAD_DIR"; } - { on = [ "g" "p" ]; desc = "Go to projects"; run = "cd ~/project"; } + { on = [ "g" "l" ]; desc = "Go to locker"; run = "cd ~/locker"; } + { on = [ "g" "n" ]; desc = "Go to nix"; run = "cd ~/nix"; } + { on = [ "g" "p" ]; desc = "Go to project"; run = "cd ~/project"; } { on = [ "g" "s" ]; desc = "Go to sync"; run = "cd ~/sync"; } { on = [ "g" "t" ]; desc = "Go to tmp"; run = "cd ~/tmp"; } - { on = [ "g" "n" ]; desc = "Go to nix"; run = "cd ~/nix"; } + { on = [ "g" "w" ]; desc = "Go to game"; run = "cd ~/game"; } ]; }; };