diff options
| author | JP Appel <jeanpierre.appel01@gmail.com> | 2024-12-16 20:06:33 -0500 |
|---|---|---|
| committer | JP Appel <jeanpierre.appel01@gmail.com> | 2024-12-16 20:06:33 -0500 |
| commit | d5b2bf350095912b6ed7405e412bc9c7e594769f (patch) | |
| tree | 8b9b03003ad4e55ecc8194ba9b03ce804448a0f7 /nvim/lua/plugins/harpoon.lua | |
| parent | 2d26cfea6712398d5613b8a2c69d38804ba1d66a (diff) | |
Remove unused plugins
Diffstat (limited to 'nvim/lua/plugins/harpoon.lua')
| -rw-r--r-- | nvim/lua/plugins/harpoon.lua | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/nvim/lua/plugins/harpoon.lua b/nvim/lua/plugins/harpoon.lua deleted file mode 100644 index abc9e04..0000000 --- a/nvim/lua/plugins/harpoon.lua +++ /dev/null @@ -1,61 +0,0 @@ -return { - 'ThePrimeagen/harpoon', -- quick file navigator - branch = "harpoon2", - dependencies = { - 'nvim-lua/plenary.nvim', - 'nvim-telescope/telescope.nvim' - }, - config = function() - require("harpoon"):setup() - end, - keys = { - { - "<leader><cr>", - function() - local harpoon = require("harpoon") - harpoon.ui:toggle_quick_menu(harpoon:list()) - end, - desc = "Open Harpoon Quickmenu" - }, - { - "<leader>m", - function() - local harpoon = require("harpoon") - harpoon:list():add() - end, - desc = "Add file to harpoon" - }, - { - "<leader>1", - function() - local harpoon = require("harpoon") - harpoon:list():select(1) - end, - desc = "Navigate to the first file" - }, - { - "<leader>2", - function() - local harpoon = require("harpoon") - harpoon:list():select(2) - end, - desc = "Navigate to the second file" - }, - { - "<leader>3", - function() - local harpoon = require("harpoon") - harpoon:list():select(3) - end, - desc = "Navigate to the third file" - }, - { - "<leader>4", - function() - local harpoon = require("harpoon") - harpoon:list():select(4) - end, - desc = "Navigate to the fourth file" - }, - } -} |
