plugins/mini-keymap: init

This commit is contained in:
Heitor Augusto 2025-05-25 16:11:32 -03:00
parent 6a1a348ab1
commit 5641c823a3
No known key found for this signature in database
GPG key ID: 53C04F8F46A1A344
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,10 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "mini-keymap";
moduleName = "mini.keymap";
packPathName = "mini.keymap";
maintainers = [ lib.maintainers.HeitorAugustoLN ];
hasSettings = false;
}

View file

@ -0,0 +1,5 @@
{
empty = {
plugins.mini-keymap.enable = true;
};
}