denops-pomodoro.vim is a Vim plugin for Pomodoro technique.
PomodoroStart
: starts the timerPomodoroPause
: pauses the timerPomodoroResume
: resumes the paused timerPomodoroReset
: resets the timerPomodoroEcho
: echoes the remaining time
This plugin uses deno-notifier.ts for sending desktop notifications.
denops-pomodoro.vim provides vim-airline integration.
function! s:airline_after_init() abort
let g:airline_section_c .= airline#section#create_right(['pomodoro'])
endfunction
autocmd User AirlineAfterInit call <SID>airline_after_init()