nix-community.nixvim/tests/test-sources/plugins/by-name/timerly/default.nix
2025-05-13 23:50:02 +02:00

28 lines
458 B
Nix

{
empty = {
plugins.timerly.enable = true;
};
example = {
plugins = {
timerly = {
enable = true;
settings = {
on_start = null;
on_finish.__raw = ''
function()
vim.notify "Time is up!"
end
'';
minutes = [
30
10
];
mapping = null;
position = "top-left";
};
};
};
};
}