mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-05 14:54:33 +02:00
12 lines
236 B
Nix
12 lines
236 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "mini-align";
|
|
moduleName = "mini.align";
|
|
packPathName = "mini.align";
|
|
|
|
maintainers = [ lib.maintainers.HeitorAugustoLN ];
|
|
|
|
settingsExample = {
|
|
silent = true;
|
|
};
|
|
}
|