mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-25 02:08:40 +02:00
29 lines
458 B
Nix
29 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";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|