denops-pomodoro.vim icon indicating copy to clipboard operation
denops-pomodoro.vim copied to clipboard

denops-pomodoro.vim

denops-pomodoro.vim is a Vim plugin for Pomodoro technique.

Commands

  • PomodoroStart: starts the timer
  • PomodoroPause: pauses the timer
  • PomodoroResume: resumes the paused timer
  • PomodoroReset: resets the timer
  • PomodoroEcho: echoes the remaining time

Desktop notifications

This plugin uses deno-notifier.ts for sending desktop notifications.

vim-airline integration

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()