Initial commit: ideaDrop.nvim plugin with sidebar and idea saving

This commit is contained in:
Carlos
2025-06-14 20:39:13 -04:00
commit fef0bb9266
11 changed files with 484 additions and 0 deletions

16
lua/ideaDrop/keymaps.lua Normal file
View File

@@ -0,0 +1,16 @@
-- ideaDrop/keymaps.lua
---@class Keymaps
---@field setup fun(): nil
local M = {}
---Sets up default keymaps for ideaDrop
---Currently only sets up a demo keymap
---@return nil
function M.setup()
-- Demo keymap for idea capture
vim.keymap.set("n", "<leader>id", function()
vim.notify("💡 Idea captured!")
end, { desc = "Drop idea (demo)" })
end
return M