30 lines
1009 B
Lua
30 lines
1009 B
Lua
return {
|
|
'epwalsh/pomo.nvim',
|
|
version = '*', -- Recommended, use latest release instead of latest commit
|
|
lazy = true,
|
|
cmd = { 'TimerStart', 'TimerRepeat', 'TimerSession' },
|
|
dependencies = {
|
|
-- Optional, but highly recommended if you want to use the "Default" timer
|
|
'rcarriga/nvim-notify',
|
|
},
|
|
opts = {
|
|
-- See below for full list of options 👇
|
|
sessions = {
|
|
norm = {
|
|
{ name = 'Work', duration = '24m30s' },
|
|
{ name = 'Status', duration = '30s' },
|
|
{ name = 'Short Break', duration = '5m' },
|
|
{ name = 'Work', duration = '24m30s' },
|
|
{ name = 'Status', duration = '30s' },
|
|
{ name = 'Short Break', duration = '5m' },
|
|
{ name = 'Work', duration = '24m30s' },
|
|
{ name = 'Status', duration = '30s' },
|
|
{ name = 'Short Break', duration = '5m' },
|
|
{ name = 'Work', duration = '24m30s' },
|
|
{ name = 'Status', duration = '30s' },
|
|
{ name = 'Long Break', duration = '15m' },
|
|
},
|
|
},
|
|
},
|
|
}
|