summaryrefslogtreecommitdiff
path: root/lua/plugins/harpoon.lua
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2024-05-26 00:45:53 -0400
committerBenjamin Chausse <benjamin@chausse.xyz>2024-05-26 00:45:53 -0400
commitf03a8e53b88d7db5f5b52b2d5481cdad4fa40bf0 (patch)
tree50b18ab66d6fa8381f53b660641ad006c3f0ec97 /lua/plugins/harpoon.lua
parent1cd0761d4a433f920d1d0fb25b27e9a6f0033ef1 (diff)
NOW THE LSP IS COMFY!!! :)
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,
}