mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-16 15:32:48 +01:00
16 lines
275 B
Nix
16 lines
275 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "timerly";
|
|
package = "timerly";
|
|
description = "Beautiful countdown timer plugin for Neovim.";
|
|
|
|
settingsExample = {
|
|
minutes = [
|
|
30
|
|
10
|
|
];
|
|
};
|
|
|
|
maintainers = [ lib.maintainers.FKouhai ];
|
|
|
|
}
|