You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)