Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 651 Bytes

File metadata and controls

37 lines (31 loc) · 651 Bytes

notes.nvim

Persistent notes window in neovim.

Installation

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.nvim

Configuration

require("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
})