mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-30 12:24:28 +02:00
12 lines
248 B
Nix
12 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;
|
|
};
|
|
}
|