aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/lua
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2024-05-11 00:57:05 -0400
committerJP Appel <jeanpierre.appel01@gmail.com>2024-05-11 00:57:05 -0400
commit5a8a5d613981f279914fccaac25afb2bc0570adb (patch)
tree3f3f2ea834834aea7e1a2dfed61b8a6a1ac22b09 /nvim/lua
parentb5e5f39840978d34b01a4457765c0f6a9cbdb9db (diff)
update harpoon config
Diffstat (limited to 'nvim/lua')
-rw-r--r--nvim/lua/plugins/harpoon.lua7
1 files changed, 5 insertions, 2 deletions
diff --git a/nvim/lua/plugins/harpoon.lua b/nvim/lua/plugins/harpoon.lua
index 123b5db..abc9e04 100644
--- a/nvim/lua/plugins/harpoon.lua
+++ b/nvim/lua/plugins/harpoon.lua
@@ -1,7 +1,10 @@
return {
'ThePrimeagen/harpoon', -- quick file navigator
branch = "harpoon2",
- dependencies = 'nvim-lua/plenary.nvim',
+ dependencies = {
+ 'nvim-lua/plenary.nvim',
+ 'nvim-telescope/telescope.nvim'
+ },
config = function()
require("harpoon"):setup()
end,
@@ -18,7 +21,7 @@ return {
"<leader>m",
function()
local harpoon = require("harpoon")
- harpoon:list():append()
+ harpoon:list():add()
end,
desc = "Add file to harpoon"
},