diff --git a/modules/packages/yazi.nix b/modules/packages/yazi.nix index e6f6900e..5c722c51 100644 --- a/modules/packages/yazi.nix +++ b/modules/packages/yazi.nix @@ -1,4 +1,4 @@ -inputs: +{ pkgs, ... }: { config = { @@ -8,7 +8,12 @@ inputs: config.programs.yazi = { enable = true; - keymap.mgr.append_keymap = [{ on = "T"; run = "shell --orphan ghostty"; }]; + keymap.mgr.append_keymap = + [ + { on = "T"; run = "shell --orphan ghostty"; } + { on = [ "c" "a" "a" ]; run = "plugin compress"; } + ]; + plugins = { inherit (pkgs.yaziPlugins) compress; }; }; }]; };