Motivation behind this plugin is simple, I want to keep my notes in markdown files and make nvim features help me to manage it.
demo.mp4
This is quick and dirty implementation, something will probably won't work for you. Currently it's in 'works on my machine' state.
- Quick Note Creation: Quick note for random stuff
- Note Searching: telescope grep integration (if you have telescope installed ofc)
- Git Integration: notes can be pushed and commited
- List Notes: telescope integration that shows all existing notes
You can install Sketchbook using lazy.nvim.
Using lazy.nvim
Add the following to your lazy.nvim
configuration:
require('lazy').setup({
{
'makefunstuff/sketchbook.nvim',
lazy = false,
config = function()
require('sketchbook').setup({
notes_directory = "~/my_notes/",
templates_directory = "~/my_notes/templates/",
keymaps = {
create_note = "<leader>nc",
update_index = "<leader>ni",
search_notes = "<leader>ns",
select_template = "<leader>nt",
create_quick_note = "<leader>nq",
toggle_quick_note = "<leader>qc", -- Keymap for toggling quick note window
open_entire_quick_note = "<leader>nqe",
commit_notes = "<leader>ngc", -- Keymap for committing notes
push_notes = "<leader>ngp", -- Keymap for pushing notes
}
})
end
}
})
- improve git Integration
- fix telescope issues with indexing
- add auto indexing (solved with telescope)