diff options
author | Raymaekers Luca <luca@spacehb.net> | 2025-04-05 15:36:24 +0200 |
---|---|---|
committer | Raymaekers Luca <luca@spacehb.net> | 2025-04-05 15:36:24 +0200 |
commit | ddad9ca6370c97991679bcfd91704e8548bb973a (patch) | |
tree | 09ebbb33f9a65be421890d4964f567676cf21967 /after/plugin/harpoon.lua | |
parent | 7870db20ff0594474daf7cab957cd936d4c246c7 (diff) | |
parent | 2c433c348662ee6e4ee5c99a8f5e400858013fa2 (diff) |
Merge branch 'fast'
Diffstat (limited to 'after/plugin/harpoon.lua')
-rw-r--r-- | after/plugin/harpoon.lua | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/after/plugin/harpoon.lua b/after/plugin/harpoon.lua deleted file mode 100644 index 999b957..0000000 --- a/after/plugin/harpoon.lua +++ /dev/null @@ -1,34 +0,0 @@ -local harpoon = require("harpoon") -local map = vim.keymap.set - --- REQUIRED -harpoon:setup() - -map("n", "<C-h>", function() - harpoon.ui:toggle_quick_menu(harpoon:list()) -end, { desc = "Harpoon pick menu" }) - -map("n", " ha", function() - harpoon:list():add() - print("Added to harpoon.") -end, { desc = "Harpoon add" }) -map("n", " h1", function() - harpoon:list():select(1) -end, { desc = "Harpoon 1" }) -map("n", " h2", function() - harpoon:list():select(2) -end, { desc = "Harpoon 2" }) -map("n", " h3", function() - harpoon:list():select(3) -end, { desc = "Harpoon 3" }) -map("n", " h4", function() - harpoon:list():select(4) -end, { desc = "Harpoon 4" }) - --- Toggle previous & next buffers stored within Harpoon list -map("n", " hp", function() - harpoon:list():prev() -end, { desc = "Harpoon previous" }) -map("n", " hn", function() - harpoon:list():next() -end, { desc = "Harpoon next" }) |