From 1536537fc65cdb8f365bb29e296fa79fc45bffbf Mon Sep 17 00:00:00 2001 From: Marcelo Jacobus Date: Wed, 27 Nov 2024 14:02:13 -0300 Subject: [PATCH] Add edit notes mapping --- lua/config/keymaps.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lua/config/keymaps.lua b/lua/config/keymaps.lua index fe9dc56..6abda97 100644 --- a/lua/config/keymaps.lua +++ b/lua/config/keymaps.lua @@ -188,3 +188,6 @@ map("n", "m4", "'d", { desc = "Go to mark 'd'" }) map("n", "mE", "me", { desc = "Set mark 'e'" }) map("n", "me", "'e", { desc = "Go to mark 'e'" }) map("n", "m5", "'e", { desc = "Go to mark 'e'" }) + +-- Notes +map("n", "no", ":vs ~/.tmp/notes.md", { desc = "Open notes" })