diff options
author | iurii plugatarov <[email protected]> | 2024-08-03 00:52:09 +0200 |
---|---|---|
committer | iurii plugatarov <[email protected]> | 2024-08-03 00:52:09 +0200 |
commit | 1b0ed0773065f74e5104ffcd190282ebe0176c68 (patch) | |
tree | 92374a4d8fde5210504ab5ff4ced18b01184c5f8 | |
parent | 7e76a80877d21cb8688416e8e4f140b371789254 (diff) | |
download | sketchbook.nvim-1b0ed0773065f74e5104ffcd190282ebe0176c68.tar.gz |
fix path
-rw-r--r-- | lua/sketchbook/config.lua | 2 |
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 |