plugins/mini-bufremove: init

This commit is contained in:
Heitor Augusto 2025-05-25 16:15:20 -03:00 committed by Austin Horstman
parent 79243692e9
commit ee2c095d40
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "mini-bufremove";
moduleName = "mini.bufremove";
packPathName = "mini.bufremove";
maintainers = [ lib.maintainers.HeitorAugustoLN ];
settingsExample = {
silent = true;
};
}

View file

@ -0,0 +1,14 @@
{
empty = {
plugins.mini-bufremove.enable = true;
};
example = {
plugins.mini-bufremove = {
enable = true;
settings = {
silent = true;
};
};
};
}