mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-13 14:02:46 +01:00
28 lines
472 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|