Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 266 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 266 Bytes

Neo Notes

Simple notes for neovim

Setup

Lua:

local status_ok, neonotes = pcall(require, "neonotes")
if not status_ok then
  return
end

-- init Neo Notes
neonotes.setup {}

-- Set keymap
vim.keymap.set("n", "cn", function()
  neonotes.createNote()
end)