A simlpe todo list manager
Create and manage tasks in plain text with tags:
- □ todo
- ✔ done @done 2022-04-20
- ✘ canceled @canceled 2022-04-20
- ⚠ blocked @blocked 2022-04-20
Load and enable the plugin in .
Optionally pass a table t
to setup(t)
for custom keymaps and/or symbols.
This will create a map for each table entry.
Entry format: <key> <symbol> <tag> <help>
t = {
{' tb', '⚠', 'blocked' , 'task: toggle blocked'},
{' tc', '✘', 'canceled', 'task: toggle canceled'},
{' td', '✔', 'done' , 'task: toggle done'},
}