Global and project-based docket management
Basically a project progress / ideas tracker. Can also be used as an easily accessible and auto-saved scratchpad.
Uses markdown files saved to your nvim-data directory by default.
There are two kinds of dockets:
- Global docket (for tracking project-independent / personal ideas & items)
- Project-specific dockets (not yet implemented)
For Lazy.nvim:
{
"DrewDalmedo/docket.nvim",
-- (Optional) set keybindings for opening dockets
keys = {
{
"<leader>dg",
"<cmd>DocketGlobal<cr>",
desc = "Open the global docket in a full window"
},
{
"<leader>df",
"<cmd>DocketGlobalFloating<cr>",
desc = "Open the global docket in a floating window (closed with Esc)",
},
},
}
DocketGlobal
: Open the global docket in a full windowDocketGlobalFloating
: Open the global docket in a floating window (closed with Esc)