A minimal Neovim plugin to open a floating note buffer per project (or globally), perfect for jotting down todos, thoughts, or quick reminders.
- 📝 Floating markdown buffer
- 📂 Saves a separate note per project
- 🌍 Global fallback note if outside a project
- 💾 Autosaves when you close the window
- 🧼 Press
qto close the note buffer
With Lazy.nvim
{
"584973/quicknote.nvim",
config = function()
require("quicknote").setup()
end,
}The command for opening the note is :QuickNote.
An example shortcut for this:
vim.keymap.set("n", "<leader>qn", "<cmd>QuickNote<CR>", { desc = "Open QuickNote" })