taskell.nvim

taskell preview inside neovim

Installation

NOTE: This plugin requires Neovim 0.5

with packer.nvim

use {'romariorobby/taskell.nvim'}

with vim-plug

Plug 'romariorobby/taskell.nvim'

Usage

:Taskel (md file)

  • Pressing q close the window like on taskell
  • No path argument will uses current path

Mapping Example

Lua

vim.api.nvim_set_keymap('n', '<leader>tt', ':Taskel<CR>',{ nnoremap = true, silent = true})

vimscript

nmap <leader>tt :Taskel<CR>