# sketchbook.nvim - simple notetaking 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 https://github.com/user-attachments/assets/ddd785f1-aea4-40b3-8422-d75efd82bfc1 ## Warn This is quick and dirty implementation, something will probably won't work for you. Currently it's in 'works on my machine' state. ## Features - **Quick Note Creation**: Quick note for random stuff - **Template Selection**: You can predefine custom template for notes - **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 ## Installation You can install Sketchbook using [lazy.nvim](https://github.com/folke/lazy.nvim). ### Using [lazy.nvim](https://github.com/folke/lazy.nvim) Add the following to your `lazy.nvim` configuration: ```lua 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 = "nc", update_index = "ni", search_notes = "ns", select_template = "nt", create_quick_note = "nq", toggle_quick_note = "qc", -- Keymap for toggling quick note window open_entire_quick_note = "nqe", commit_notes = "ngc", -- Keymap for committing notes push_notes = "ngp", -- Keymap for pushing notes } }) end } }) ``` ## TODO: - [ ] improve git Integration - [ ] fix telescope issues with indexing - [ ] add auto indexing