mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-30 20:34:32 +02:00
13 lines
248 B
Nix
13 lines
248 B
Nix
|
{ lib, ... }:
|
||
|
lib.nixvim.plugins.mkNeovimPlugin {
|
||
|
name = "mini-bufremove";
|
||
|
moduleName = "mini.bufremove";
|
||
|
packPathName = "mini.bufremove";
|
||
|
|
||
|
maintainers = [ lib.maintainers.HeitorAugustoLN ];
|
||
|
|
||
|
settingsExample = {
|
||
|
silent = true;
|
||
|
};
|
||
|
}
|