summaryrefslogtreecommitdiff
path: root/lua/plugins/harpoon.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/plugins/harpoon.lua')
-rw-r--r--lua/plugins/harpoon.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/lua/plugins/harpoon.lua b/lua/plugins/harpoon.lua
index 9a8942e..9d061cf 100644
--- a/lua/plugins/harpoon.lua
+++ b/lua/plugins/harpoon.lua
@@ -7,7 +7,8 @@ return {
},
config = function()
local harpoon = require("harpoon")
- harpoon:setup({})
+
+ harpoon:setup()
-- -- basic telescope config
-- local conf = require("telescope.config").values
@@ -39,6 +40,6 @@ return {
vim.keymap.set("n", "<C-;>", function() harpoon:list():select(5)end )
vim.keymap.set("n", "<C-S-P>", function() harpoon:list():prev() end)
- vim.keymap.set("n", "<C-S-P>", function() harpoon:list():next() end)
+ vim.keymap.set("n", "<C-S-N>", function() harpoon:list():next() end)
end,
}