Persistent notes window in neovim.
packer:
use('jakebark/notes.nvim')vim plug:
use('jakebark/notes.nvim')lazy:
{
'jakebark/notes.nvim',
config = function() require("notes") end,
}manual:
git clone https://github.com/jakebark/notes.nvim.git ~/.local/share/nvim/site/pack/notes/start/notes.nvimrequire("notes").setup({
height = 20, -- window height
width = 80, -- window width
relative_numbers = true, -- false for absolute
notes_file_path = "~/notes.md" -- path to your notes file
})