notes.nvim is a simple note taking plugin for Neovim
Use your prefered plugin manager
{
'notes.nvim',
opts = {} -- optional, use if you want to change the default settings
}
Map a key to the open
function
vim.keymap.set('n', '<leader>n', require 'notes'.open, { desc = '[N]otes' })
defaults:
{
path = vim.fn.stdpath "data" .. "/" .. "notes-nvim/", -- Path to the folder where all notes should be stored
height = 40, -- height of both windows
list_width = 20, -- width of the list
note_width = 40, -- width of the currently selected note
row = 5, -- window row offset
col = 15, -- window col offset
file_extension = ".md", -- extension added to notes
new_note_text = "<New note>", -- New note option text
}
- Tags
- Filters
- Search
- More sensible keybindings