plugins/mini-keymap: init

This commit is contained in:
Heitor Augusto
2025-06-22 19:01:14 +00:00
committed by Austin Horstman
parent 6b2e98bc47
commit 79243692e9
2 changed files with 15 additions and 0 deletions
+10
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;
}
@@ -0,0 +1,5 @@
{
empty = {
plugins.mini-keymap.enable = true;
};
}