1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-13 14:02:46 +01:00
nixvim/tests/test-sources/plugins/by-name/timerly/default.nix
saygo-png 79d53a50e2 tests: use __empty and __raw
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-11-05 21:26:13 +00:00

28 lines
472 B
Nix

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