treewide: register whichKey labels

This commit is contained in:
Frothy 2024-02-25 11:39:05 -05:00
commit b9aa7088b8
12 changed files with 69 additions and 12 deletions

View file

@ -4,7 +4,7 @@
lib,
...
}: let
inherit (lib) mkIf;
inherit (lib) mkIf defaultAttributes;
cfg = config.vim.minimap.minimap-vim;
in {
@ -13,5 +13,9 @@ in {
pkgs.code-minimap
"minimap-vim"
];
vim.binds.whichKey.register = defaultAttributes {
"<leader>m" = "+Minimap";
};
};
}