diff options
Diffstat (limited to 'nvim/lua')
| -rw-r--r-- | nvim/lua/plugins/harpoon.lua | 7 |
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" }, |
