vim.api.nvim_set_keymap('n', 'Tw', 'TimerStart 25m Work', { desc = '⏲️ Start 25m [w]ork timer' }) vim.api.nvim_set_keymap('n', 'Tb', 'TimerStart 5m Break', { desc = '⏲️ Start 5m [b]reak time' }) vim.api.nvim_set_keymap('n', 'TB', 'TimerStart 10m Break', { desc = '⏲️ Start 10m [B]reak time' }) vim.api.nvim_set_keymap('n', 'Ts', 'TimerStop', { desc = '⏲️ [s]top timer' }) return { { 'epwalsh/pomo.nvim', -- https://github.com/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 = {}, config = function(_, opts) require('pomo').setup(opts) end, }, }