about summary refs log tree commit diff
diff options
context:
space:
mode:
authoriurii plugatarov <[email protected]>2024-08-03 00:52:09 +0200
committeriurii plugatarov <[email protected]>2024-08-03 00:52:09 +0200
commit1b0ed0773065f74e5104ffcd190282ebe0176c68 (patch)
tree92374a4d8fde5210504ab5ff4ced18b01184c5f8
parent7e76a80877d21cb8688416e8e4f140b371789254 (diff)
downloadsketchbook.nvim-1b0ed0773065f74e5104ffcd190282ebe0176c68.tar.gz
fix path
-rw-r--r--lua/sketchbook/config.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/sketchbook/config.lua b/lua/sketchbook/config.lua
index 102161f..0f52993 100644
--- a/lua/sketchbook/config.lua
+++ b/lua/sketchbook/config.lua
@@ -87,7 +87,7 @@ function M.set_keymaps()
 	vim.api.nvim_set_keymap(
 		"n",
 		keymaps.list_notes,
-		':lua require("plugins.sketchbook.list_notes").list_all_notes()<CR>',
+		':lua require("sketchbook.list_notes").list_all_notes()<CR>',
 		{ noremap = true, silent = true, desc = "List all notes" }
 	)
 end